var isMac = (navigator.userAgent.toLowerCase().indexOf("mac") != -1);
var isIE = (document.all);
var isNav = (document.layers);
var isNav6_x = (navigator.userAgent.toLowerCase().indexOf("netscape6") != -1);
var isNav4_x = (document.layers);
var is4_x = (navigator.userAgent.toLowerCase().indexOf("msie 4.") != -1);
var is5_x = (navigator.userAgent.toLowerCase().indexOf("msie 5.") != -1);

//for Netscape 4 browsers; PC only!!!
if (isNav4_x && !isMac) {
	document.write('<style type="text/css"> body, td {font-size: 11pt;}</style>');
}

//for Netscape 4 browsers; MacOS only!!!
if (isMac && isNav4_x)  {
	document.write('<style type="text/css"> body, td {font-size: 15pt;}</style>');
}

//for IE4 browsers; MacOS only!!!
if (isMac && isIE && is4_x) {
	document.write('<style type="text/css"> body, td {font-size: 15pt;}</style>');
}

//all browsers get non-underlined links; those that support it get underlined on rollover...
document.write('<style type="text/css">a {text-decoration:none; } a:hover {text-decoration:underline; }</style>');


function winResize() {
	alert('in winResize');
	//document.location.href = document.location.href;
}

if (isNav)	{
	//window.onresize = winResize;
}

//function adSetPopupWH() {}

