var vNum = navigator.appVersion.charAt(0);
var bName = navigator.appName.charAt(0);
if ( bName == "M" && vNum < 4)
	location.href="getnewbrowser.html";
if ( bName == "N" && vNum < 4)
	location.href="http://www.polastyle.com/getnewbrowser.html";

document.writeln("<STYLE TYPE='text/css'><!--");
if(navigator.appVersion.indexOf("Mac") > -1)
{
	if( bName == "M")
		{
			// MAC IE
			document.writeln(".navidate{font-size:9px; line-height:9px}");
			document.writeln(".navititle{font-size:9px; line-height:10px}");
			document.writeln(".naviactive{font-size:9px; line-height:13px}");
			document.writeln(".navibody{font-size:9px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:10px; line-height:14px}");
			document.writeln(".j10n{font-Size:10px}");
			document.writeln(".j12{font-Size:12px}");
			document.writeln(".footerlink{font-size:9px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:9px; line-height:10px; text-decoration:none; border:1 dotted #999999}");
		}
	else
	{
		if( vNum < 5 )
		{
			// MAC NETSCAPE 4.x
			document.writeln(".navidate{font-size:9px; line-height:9px}");
			document.writeln(".navititle{font-size:9px; line-height:10px}");
			document.writeln(".naviactive{font-size:9px; line-height:13px}");
			document.writeln(".navibody{font-size:9px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:10px; line-height:14px}");
			document.writeln(".j10n{font-Size:10px}");
			document.writeln(".j12{font-Size:12px; line-height:15px}");
			document.writeln(".footerlink{font-size:9px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:9px; line-height:10px; text-decoration:none; border:1 dotted #999999}");
		}
	else
		{
			// MAC NETSCAPE 6.x~
			document.writeln(".navidate{font-size:9px; line-height:9px}");
			document.writeln(".navititle{font-size:9px; line-height:10px}");
			document.writeln(".naviactive{font-size:9px; line-height:13px}");
			document.writeln(".navibody{font-size:9px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:10px; line-height:14px}");
			document.writeln(".j10n{font-Size:10px}");
			document.writeln(".j12{font-Size:12px; line-height:15px}");
			document.writeln(".footerlink{font-size:9px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:9px; line-height:10px; text-decoration:none; border:1 dotted #999999}");
	 	}
	 }

}
else
{
	if( bName == "M")
	{
		// WIN IE
			document.writeln(".navidate{font-size:9px; line-height:9px}");
			document.writeln(".navititle{font-size:10px; line-height:11px}");
			document.writeln(".naviactive{font-size:10px; line-height:13px}");
			document.writeln(".navibody{font-size:10px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:11px; line-height:14px}");
			document.writeln(".j10n{font-Size:11px}");
			document.writeln(".j12{font-Size:12px; line-height:15px; letter-spacing:1px}");
			document.writeln(".footerlink{font-size:10px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:10px; line-height:12px; text-decoration:none; border:1 dotted #999999}");
	}
	else
	{
		if( vNum < 5 )
		{
			// WIN NETSCAPE 4.x
			document.writeln(".navidate{font-size:11px; line-height:10px}");
			document.writeln(".navititle{font-size:11px; line-height:11px}");
			document.writeln(".naviactive{font-size:11px; line-height:13px}");
			document.writeln(".navibody{font-size:11px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:11px; line-height:14px}");
			document.writeln(".j10n{font-Size:11px}");
			document.writeln(".j12{font-Size:12px; line-height:15px}");
			document.writeln(".footerlink{font-size:10px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:11px; line-height:11px; text-decoration:none; border:1 dotted #999999}");
		}
		else
		{
			// WIN NETSCAPE 6.x~
			document.writeln(".navidate{font-size:9px; line-height:9px}");
			document.writeln(".navititle{font-size:10px; line-height:11px}");
			document.writeln(".naviactive{font-size:10px; line-height:13px}");
			document.writeln(".navibody{font-size:10px; line-height:13px}");
			document.writeln(".j10,body,td{font-Size:11px; line-height:14px}");
			document.writeln(".j10n{font-Size:11px}");
			document.writeln(".j12{font-Size:12px; line-height:15px; letter-spacing:1px}");
			document.writeln(".footerlink{font-size:10px; line-height:10px; color:#c6c6c6; text-decoration:underline}");
			document.writeln(".pulldown{font-size:10px; line-height:12px; text-decoration:none; border:1 dotted #999999}");
		
		}
	}
}
document.writeln("--></STYLE>");
 
			// Top To
		function topTo() {
		if(navigator.appName.charAt(0)=='N'){
			if (window.pageYOffset > 0 ) {scrollTo (0,0);}
			}else if(navigator.appName.charAt(0)=='M'){
			if (document.body.scrollTop > 0 ) {scrollTo (0,0);}
			}
		}
