//SCREEN REZ CHECKER
/*
Screen resolution detecter script: By JavaScript Kit (www.javascriptkit.com) More free scripts here! Note: Credit must stay intact for use.
*/
 
var correctwidth=800;
var correctheight=560;
if (screen.width<correctwidth||screen.height<correctheight){
alert("This webpage is bested viewed with screen resolution "+correctwidth+" x "+correctheight+" or above. Your current resolution is "+screen.width+" x "+screen.height+". If possible, please change the resolution!");
}
//END SCREEN REZ CHECKER
