// set Variable	var Agent = navigator.userAgent;	var cssDir = '/contents/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 popJump(selOBJ)  {   page = selOBJ.selectedIndex;   location.href = selOBJ.options[page].value;  }  function selMap(selOBJ)  {   page = selOBJ.selectedIndex;   if (page == "0"){    tmp_domestic = document.getElementById("dMap").style;    tmp_domestic.display = "block";    tmp_domestic = document.getElementById("iMap").style;    tmp_domestic.display = "none";   }   if (page == "1"){    tmp_domestic = document.getElementById("dMap").style;    tmp_domestic.display = "none";    tmp_domestic = document.getElementById("iMap").style;    tmp_domestic.display = "block";   }  }// for debug/*alert(flag);*/