os      = getOSType();
if (os == "MacOS")   dirName = ""+level+"css/fontmac_en.css";
if (os == "Windows") dirName = ""+level+"css/fontwin_en.css";
if (os == "UNIX")    dirName = ""+level+"css/fontwin_en.css";
document.write("<link rel='stylesheet' href='"+dirName+"' type='text/css'>");

function getOSType()
{
    var uAgent  = navigator.userAgent.toUpperCase();
    if (uAgent.indexOf("MAC") >= 0) return "MacOS";
    if (uAgent.indexOf("WIN") >= 0) return "Windows";
    if (uAgent.indexOf("X11") >= 0) return "UNIX";
    return "";
}

