mac=(navigator.appVersion.indexOf('Mac')!=-1)?true:false;

ie=(navigator.appName.charAt(0) == "M")?true:false;



document.write("<STYLE TYPE='text/css'><!--")

if(mac){

	//FOR MACINTOSH IE NS FIREFOX

	document.write("a:hover {color: #3399CC;text-decoration: none}")
	document.write("a:link {  text-decoration: none}")
	document.write("a:visited {  text-decoration: none}")

}

else{

	if(ie){

	//FOR WINDOWS IE

	document.write("a:hover{color: #3399CC;text-decoration: none}")
	document.write("a:link{ text-decoration: none}")
	document.write("a:visited {text-decoration: none}")

	}

	else{

	//FOR WINDOWS NETSCAPE FIREFOX

	document.write("a:hover {color: #3399CC;text-decoration: none}")
	document.write("a:link {  text-decoration: none}")
	document.write("a:visited {  text-decoration: none}")
	

	}

}

document.write("--></STYLE>");