<!--
//this page gets pulled in cross domain in iframes in places
//on PC crossdom security prevents you from getting the parent window size, so...
var winW = 801; var winH = 601;

function displayWindow(url, width, height) {        
	if(winW > 800 && winH > 600){
		var Win = window.open(url + "&supst=large","displayWindow",'width=' + parseInt(width * 1.5) + ',height=' + parseInt(height * 1.5) + ',resizable=1,scrollbars=yes,menubar=yes,status=yes' );
	} else {
		var Win = window.open(url,"displayWindow",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,menubar=yes,status=yes' );
	}
	if (window.focus) Win.focus();
}

function report(){
	return [document.winW, document.winH];
}


-->
