/* Detects screen resolution and writes an alert if it is too low; modified Dynamic Drive script. */

var minwidth=1024
var minheight=768
if (screen.width<minwidth||screen.height<minheight)
{
$("#container").before("<div class='bigmsg criticalmsg msg'>Your screen resolution is too low. The minimum resolution recommended for proper use of this site is " + minwidth + "x" + minheight + ". Please increase your screen resolution if possible for the best experience.</div>");
}