// JavaScript Document -screen res
var bestwidth = 1024;var bestheight = 768;
if (screen.width != bestwidth || screen.height != bestheight) {
msg = "This website is best viewed in Internet Explorer and <u>best viewed"
+ " at " + bestwidth + "x" + bestheight + " screen resolution,</u> "
+ "but your screen resolution is " + screen.width + "x"
+ screen.height + "<br /> Please change your screen "
+ "to recommended resolution if possible";document.write(msg);

}
