

<!--
function getFontCss( ContextPath ){

	var vNum = navigator.appVersion.charAt(0);
	var bName = navigator.appName.charAt(0);

	if ( !(bName == "M" && vNum < 4) || !(bName == "N" && vNum < 4)){
		if(navigator.appVersion.indexOf("Mac") > -1){
			if( bName == "M"){
				// MAC IE
				document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/macie.css\" title=\"fontproperty\">");
			}else
			if( bName == "Safari"){
				// MAC Safari
				document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/safari.css\" title=\"fontproperty\">");
			}else{
				if( vNum < 5 ){
					// MAC NETSCAPE 4.x
					document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/macnn4.css\" title=\"fontproperty\">");
				}else{
					// MAC NETSCAPE 6.x~
					document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/macnn6.css\" title=\"fontproperty\">");
		 		}
			}
		}else{
			if( bName == "M"){
				// WIN IE
				document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/winie.css\">");
			}else{
				if( vNum < 5 ){
					// WIN NETSCAPE 4.x
					document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/winnn4.css\" title=\"fontproperty\">");
				}else{
					// WIN NETSCAPE 6.x~
					document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\""+ContextPath+"/css/winnn6.css\" title=\"fontproperty\">");
				}
			}
		}
	}
}
//-->

