<!--








function winOpen(theURL,winName,features) { 
	window.open(theURL,winName,features); 
} 

/*
self.onError=null;
currentX = currentY = 0; 
whichIt = null; 
lastScrollX = 0; lastScrollY = 0;
NS = (document.layers) ? 1 : 0;
IE = (document.all) ? 1: 0;

function heartBeat() {
if(IE) { 
diffY = document.body.scrollTop; 
diffX = 0; 
}
if(NS) { diffY = self.pageYOffset; diffX = self.pageXOffset; }
if(diffY != lastScrollY) {
percent = .1 * (diffY - lastScrollY);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.floater.style.pixelTop += percent;
if(NS) document.floater.top += percent; 
lastScrollY = lastScrollY + percent;
}
if(diffX != lastScrollX) {
percent = .1 * (diffX - lastScrollX);
if(percent > 0) percent = Math.ceil(percent);
else percent = Math.floor(percent);
if(IE) document.all.floater.style.pixelLeft += percent;
if(NS) document.floater.top += percent;
lastScrollY = lastScrollY + percent;
} 
} 
if(NS || IE) action = window.setInterval("heartBeat()",1);
*/

function gosch()
{
	var frm = document.schForm;
	if (frm.Search2.value == "")
	{
		alert("°Ë»ö¾î¸¦ ÀÔ·ÂÇØ ÁÖ¼¼¿ä");
		frm.Search2.focus();
		return;
	}
	frm.submit();

}


function winOpen(theURL,winName,features) { 
window.open(theURL,winName,features); 
} 



function EmailComboChange(frm, v){
	if (v==""){
		frm.Email2.value="";
		frm.Email2.disabled=false;
		frm.Email2.focus();
	}else{
		frm.Email2.value=v;
		frm.Email2.disabled=true;
	}
}

//·Î±×ÀÎ Ã¼Å©
function fnc_login_chk(userId, url){
	var login_yes = "";
	if(userId==""){
		login_yes=confirm("·Î±×ÀÎÀÌ ÇÊ¿äÇÕ´Ï´Ù. ·Î±×ÀÎ ÆäÀÌÁö·Î ÀÌµ¿ÇÏ½Ã°Ú½À´Ï±î?");
		if(login_yes){
			document.location.href=url;
			//if(opener.document==null) document.location.href=url;
			//else opener.document.location.href=url;
			return false;
		}else{
			return false;
		}
	}else{
		return true;
	}
}
//-->
