//-----------------------------------------------------
// browser custom line-height, font-size
//-----------------------------------------------------

mac=(navigator.userAgent.indexOf("Mac",0)!=-1)?true:false;
ie=(navigator.userAgent.indexOf("MSIE") != -1)?true:false;
gecko=(navigator.userAgent.indexOf("Gecko") != -1)?true:false;
safari=(navigator.userAgent.indexOf("Safari") != -1)?true:false;

if(mac){
	if(ie){
		document.write("<link rel='stylesheet' href='/common/css/languageA/browserCustom/mac_ie.css' type='text/css'>");
	}
	else if(safari){
		document.write("<link rel='stylesheet' href='/common/css/languageA/browserCustom/mac_safari.css' type='text/css'>");
	}
	else if(gecko){
		document.write("<link rel='stylesheet' href='/common/css/languageA/browserCustom/mac_gecko.css' type='text/css'>");
	}
}

