var ua = navigator.userAgent.toLowerCase(); 
this.isNS = ( (this.isGecko) ? (ua.indexOf('netscape') != -1) : ( (ua.indexOf('mozilla') != -1) && (ua.indexOf('spoofer') == -1) && (ua.indexOf('compatible') == -1) && (ua.indexOf('opera') == -1)  && (ua.indexOf('firefox') == -1) && (ua.indexOf('webtv') == -1) && (ua.indexOf('hotjava') == -1) ) );
this.versionMinor = parseFloat(navigator.appVersion); 
this.versionMajor = parseInt(this.versionMinor); 
this.isNS = (this.isNS && this.versionMajor >= 4);
this.isNS6 = (this.isNS && this.versionMajor == 5);
this.isNS7 = (this.isNS && this.versionMajor >= 6);
this.isMozilla = (ua.indexOf('mozilla') != -1);
this.isOpera = (ua.indexOf('opera') != -1);
this.isIE = (navigator.appName == 'Microsoft Internet Explorer');

var cMenu="";
var obj="";
var content="";


function browserSniff(){
	var detect = navigator.userAgent.toLowerCase();
	var browser,version,platform,total,thestring;
	function checkIt(string)
	{
		place = detect.indexOf(string) + 1;
		thestring = string;
		return place;
	}
	if (checkIt('safari'))
	{
		browser = "safari";
		platform = "MacPPC"
		this.safari = "safari";
		return this.safari;
	}
return true;
}

function setfont()
{
	if (this.isIE)
	{
	document.getElementById("content").style.fontSize ="85%";
	}
	else if (! this.isIE)
	{
		if (this.isNS6)
		{
			if (navigator.platform == "MacPPC")
			{
				document.getElementById("content").style.fontSize ="85%";
			}
			else if (navigator.platform != "MacPPC")
			{
				if (this.isNS6)
				{
					document.getElementById("content").style.fontSize ="120%";
				}
				else if (! this.isNS6)
				{
					document.getElementById("content").style.fontSize ="90%";
				}
			}
		}	
		if (this.isMozilla) {
				document.getElementById("content").style.fontSize ="85%";
		}
		if (this.isOpera) {
				document.getElementById("content").style.fontSize ="85%";
		}
		else if (! this.isNS6)
		{
		}
	}
}