<!--

// ·¹ÀÌ¾îº¸ÀÌ±â °¨Ãß±â
function show_layer(lname, flag)
{
  var layer = (navigator.appName == 'Netscape') ? document.layers[lname] : document.all[lname];
  if (lname == '')
    return;
  if (navigator.appName == 'Netscape')
    layer.visibility = (flag == 0) ? 'show' : 'hide';
  else
    layer.style.visibility = (flag == 0) ? 'visible' : 'hidden';
}

// ¼¿·ºÆ®¹Ú½º ¹Ù·Î°¡±â
function goto_byselect(sel, targetstr)
			{
			  var index = sel.selectedIndex;
			  if (sel.options[index].value != '') {
				 if (targetstr == 'blank') {
				   window.open(sel.options[index].value, 'win1');
				 } else {
				   var frameobj;
				   if ((frameobj = eval(targetstr)) != null)
				   frameobj.location = sel.options[index].value;
				 }
			  }
			}


// ÆË¾÷
function open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

//¸¶¿ì½º¿À¹öÀÌ¹ÌÁö
function mouseOver(obj, bool)
{
	if(bool)
		obj.src="../imgs/"+ obj.id +"_s.gif";
	else
		obj.src="../imgs/"+ obj.id +".gif";
}

// object/embed ¹ö±×¿ë..
function objEmbed_show(objID){
  //document.write(obj);
  document.write(document.getElementById(objID).value);
}

// ¼ýÀÚ¸¸ ÀÔ·Â
function NumData_chk(sel){
  var val = sel.value.replace(/\D/g,'');
  
  sel.value = val;
}

-->
