<!--

function img_act(imgName) {
	document [imgName].src = eval(imgName + "on.src");}

function img_inact(imgName) {
	document [imgName].src = eval(imgName + "off.src");}



function quickmenu(formname) {
	// ÀÚ½ÅÀÎ°æ¿ì
	var target=eval(self) 
	
	// main ÇÁ·¹ÀÓÀÇ ÆäÀÌÁö¸¦ ¹Ù²Ù´Â °æ¿ì
	//var target=eval(top.main) 
	
	// newwin ÀÌ¶ó´Â »õÃ¢¿¡ ¿©´Â °æ¿ì
	//var newwin = window.open();
	//var target=eval(newwin) 

	if (formname.value==''){
	// ¸Þ´º¸¦ ¼±ÅÃÇÏÁö¾Ê°í ¹öÆ° Å¬¸¯½Ã ÀÌº¥Æ®
	}
		else {
			target.location=formname.options[formname.selectedIndex].value;
			document.quickform.url.selectedIndex=0; // ÀÌµ¿ÇÑ ´ÙÀ½ Ç®´Ù¿î¸Þ´º ¼±ÅÃÇØÁ¦
		}
	}


function OpenFlash(Filename) {
	window.open(Filename, 'Flash', "resizable=no,scrollbars=no, status=1, width=604,height=392");
	}


function OpenPop(Filename) {
	pop=window.open(Filename, 'pop', "resizable=no,scrollbars=no, status=1, width=500,height=400"); pop.focus();
	}


function WinMini() {
	mini.Click();
	}


function SendMail(Filename) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (240 + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (250 + 50); //half the screen height minus half the new window height (plus title and status bars).
	var popmv = window.open(Filename,"sendmail","status=1, scrollbars=no, resizable=no, width=480, height=475,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ""); popmv.focus();
	}


function SendMail_org(Filename) {
	var iMyWidth;
	var iMyHeight;
	iMyWidth = (window.screen.width/2) - (240 + 10); //half the screen width minus half the new window width (plus 5 pixel borders).
	iMyHeight = (window.screen.height/2) - (250 + 50); //half the screen height minus half the new window height (plus title and status bars).
	var popmv = window.open(Filename,"sendmail","status=1, scrollbars=no, resizable=no, width=480, height=500,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ""); popmv.focus();
	}


function lnk_goto(url, targetstr) {
  if (url == 'back')
    history.back(1);
  else if (url == 'prev')
    history.forward(1);
  else {
     if (targetstr == 'blank') {
       window.open(url, 'win1');
     } else {
       var frameobj;
       if (targetstr == '') targetstr = 'self';
       if ((frameobj = eval(targetstr)) != null)
         frameobj.location = url;
     }
  }
}


function clearform() {
	document.form.reset();
	}

//-->