<!-- 
// Copyright (c) 1999 Optum. All Rights Reserved.

if(NN){
// NETSCAPE WINDOW SIZE SNIFFER
winW = window.innerWidth-16
winH = window.innerHeight
HIRES = (winW >= 780) ? true : false;
LORES = (winW < 780) ? true : false;
// ONRESIZE HANDLER FOR NN
origWidth=innerWidth;origHeight=innerHeight;onresize=function(){if(innerWidth!=origWidth||innerHeight!=origHeight)location.reload()}
}

if(IE){
// IE WINDOW SIZE SNIFFER (Must be after body tag)
winW = document.body.offsetWidth-20;
winH = document.body.offsetHeight;
HIRES = (winW >= 780) ? true : false;
LORES = (winW < 780) ? true : false;
// ONRESIZE HANDLER FOR IE
origWidth=document.body.offsetWidth;origHeight=document.body.offsetHeight;onresize=function(){if(document.body.offsetWidth!=origWidth||document.body.offsetHeight!=origHeight)location.reload()}
}

//-->