// JavaScript Document



var dirName;

os      = getOSType();
if (os == "MacOS")   dirName = "/common/css/macos.css";


document.write("<link rel='stylesheet' href='"+dirName+"' type='text/css'>");



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

/*

alert ('hello');

*/



function navi(obj) {
 url = obj.options[obj.selectedIndex].value;
 if(url != "") {
   location.href = url;
  }
}
