function clearText(tmp){

	var fid=window.document.LoginForm.userID;
	var fpw=window.document.LoginForm.userPWD;
	window.document.getElementById("a1").style.display="none";
	window.document.getElementById("a2").style.display="";
	if(tmp==1){//¾ÆÀÌµðÀÇ °æ¿ì
		if(fid.value=="ÇÐ¹ø"){fid.value="";}
		fid.focus();
		loginFocus = true;
	}else if(tmp==2){//ÆÐ½º¿öµåÀÇ °æ¿ì
		if(fid.value=="ÇÐ¹ø"){fid.value="";fid.focus();}
		loginFocus = true;
		
	}
	return;
} 

function LoginCheck(fm){
	fid = eval(fm+'.userID');
	fpw = eval(fm+'.userPWD');
	fr  = eval('document.'+fm);
	
	if (fid.value == '' || fid.value == 'ÇÐ¹ø' ){
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä.");
		fid.focus();
		return;
	}
	if (fpw.value == ''){
		alert("ºñ¹Ð¹øÈ£¸¦ ÀÔ·ÂÇÏ¼¼¿ä.")
		fpw.focus();
		return;
	}
	fr.submit();
}

function pollsu(str)
{
	var PrvWin = window.open('','box','width=600,height=400,marginwidth=0,marginheight=0,resizable=0,scrollbars=1');
	document.form1.action = str;
	document.form1.target = 'box';
	document.form1.submit();
}

function personSearch(fm){
	
	if (!Check(fm.userID.value)){
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä.");
		fm.userID. focus();
		return false;
	}
	if (!Check(fm.userJumin1.value)){
		alert("ÁÖ¹Î¹øÈ£ ¾ÕÀÚ¸®¸¦ ÀÔ·ÂÇÏ¼¼¿ä.")
		fm.userJumin1.focus();
		return false;
	}
	if (!Check(fm.userJumin2.value)){
		alert("ÁÖ¹Î¹øÈ£ µÞÀÚ¸® ÀÔ·ÂÇÏ¼¼¿ä.")
		fm.userJumin3.focus();
		return false;
	}
	return true;
}
function compPwd(fm){
	
	if (!Check(fm.userID.value)){
		alert("¾ÆÀÌµð¸¦ ÀÔ·ÂÇÏ¼¼¿ä.");
		fm.userID. focus();
		return false;
	}
	if (!Check(fm.userReg.value)){
		alert("»ç¾÷ÀÚµî·Ï¹øÈ£¸¦ ÀÔ·ÂÇÏ¼¼¿ä.")
		fm.userReg.focus();
		return false;
	}

	return true;
}
