//Alerts user if screen resolution too low
var correctwidth=1024
var correctheight=768
if (screen.width<correctwidth||screen.height<correctheight)
alert("This resource is bested viewed with a screen resolution of "+correctwidth+" X "+correctheight+" or above. Your current resolution is "+screen.width+" X "+screen.height+". If possible, please increase your screen resolution!")