var isNav, isIE;

if (parseInt(navigator.appVersion.charAt(0)) >= 4) {
	isNav = (navigator.appName == "Netscape") ? 1 : 0;
	isIE = (navigator.appName.indexOf("Microsoft") != -1) ? 1 : 0;
}

//IE Max
IEMaxH = 553; //530
IEMaxW = 630; //612

//Nav Max
NavMaxH = 548;
NavMaxW = 608;

function openResizableWindow(page) {
	window.open(page, "featureWindowResizable", "width=646,innerwidth=646,height=480,innerheight=480,toolbar=no,titlebar=no,menubar=no,location=no,scrollbars=yes,resizable=yes");
}

