
<!--

// set Variable
	var Agent = navigator.userAgent;
	var cssDir = '/css/';
	var cssTags = '<link rel="stylesheet" type="text/css" href="';
	var flag = null;

// CSS deverge for Cross Platform & Cross Browser
if (Agent.indexOf('Win') != -1) {
	if (document.all) { // Win_IE
		flag = "wie";
		document.open();
		document.write(cssTags + cssDir + flag + '.css" title="WinIE_style">');
		document.close();
	} else { // Win_NS
		flag = "wns";
		document.open();
		document.write(cssTags + cssDir + flag + '.css" title="WinNS_style">');
		document.close();
	}
}

if (Agent.indexOf('Mac') != -1) {
	if (document.all) { // Mac_IE
		flag = "mie";
		document.open();
		document.write(cssTags + cssDir + flag + '.css" title="MacIE_style">');
		document.close();
	} else { // Mac_NS
		flag = "mns";
		document.open();
		document.write(cssTags + cssDir + flag + '.css" title="MacNS_style">');
		document.close();
	}
}
function MM_checkPlugin(plgIn, theURL, altURL, autoGo) { //v4.0
  var ok=false; document.MM_returnValue = false;
  with (navigator) if (appName.indexOf('Microsoft')==-1 || (plugins && plugins.length)) {
    ok=(plugins && plugins[plgIn]);
  } else if (appVersion.indexOf('3.1')==-1) { //not Netscape or Win3.1
    if (plgIn.indexOf("Flash")!=-1 && window.MM_flash!=null) ok=window.MM_flash;
    else if (plgIn.indexOf("Director")!=-1 && window.MM_dir!=null) ok=window.MM_dir;
    else ok=autoGo; }
  if (!ok) theURL=altURL; if (theURL) window.location=theURL;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function LmOver(elem){
elem.style.backgroundColor = "#ff9900";
elem.style.cursor = 'hand'
}

function LmOut(elem){
elem.style.backgroundColor = "";
}

function LmUp(path){
location.href = path;
}
//-->

