// Screen Resolution Warning




var MinWidth=1024;
var MinHeight=720;
if (screen.width < MinWidth || screen.height < MinHight);
alert("This webpage has been designed for a minimum screen resolution of "+MinWidth+"*"+MinHeight+". Your current resolution is "+screen.width+"*"+screen.height+". If possible, please change the resolution; otherwise the site may not display properly!");

