
// Font-Size Controller

if(navigator.userAgent.indexOf("Mac")!=-1){
		if(navigator.userAgent.indexOf("Safari")!=-1){
			//Macintosh Safari
			document.write('<link rel="stylesheet" href="/common/c/font/safari.css" type="text/css">')
		} else if(navigator.userAgent.indexOf("Gecko")!=-1){
			//Macintosh Gecko
			document.write('<link rel="stylesheet" href="/common/c/font/mac_moz.css" type="text/css">')
		} else  if(navigator.userAgent.indexOf("Opera")!=-1){
			//Macintosh Opera
			document.write('<link rel="stylesheet" href="/common/c/font/mac_opera.css" type="text/css">')
		} else if(navigator.appName=="Netscape"){
			//Macintosh Netscape4
			document.write('<link rel="stylesheet" href="/common/c/font/mac_nn.css" type="text/css">')
		} else {
			//Macintosh Internet Explorer
			document.write('<link rel="stylesheet" href="/common/c/font/mac_ie.css" type="text/css">')
		}
	} else {
		if(navigator.userAgent.indexOf("Gecko")!=-1){
			//Windows Gecko
			document.write('<link rel="stylesheet" href="/common/c/font/win_moz.css" type="text/css">')
		} else if(navigator.appName=="Netscape"){
			//Windows Netscape4
		} else if(navigator.userAgent.indexOf("Opera")!=-1){
			//Windows Opera
			document.write('<link rel="stylesheet" href="/common/c/font/win_opera.css" type="text/css">')
		} else {
			//Windows Internet Explorer
			document.write('<link rel="stylesheet" href="/common/c/font/win_ie.css" type="text/css">')
		}
	}