//----------------------- °Ô½ÃÆÇ ----------------------------
function Board_Frm(theForm)
{
	if(!theForm.name.value){
		alert("Please input name!");
		theForm.name.focus(); 
		return false;
	}
	if(!theForm.pwd.value){
		alert("Please input password!");
		theForm.pwd.focus(); 
		return false;
	}
	if(!theForm.mail.value){
		alert("Please input mail!");
		theForm.mail.focus(); 
		return false;
	}	
	if(!theForm.subject.value){
		alert("Please input Title!");
		theForm.subject.focus(); 
		return false;
	}
	if(!theForm.body.value){
		alert("Please input content!");
		theForm.body.focus(); 
		return false;
	}
}

//----------------------- °øÁö»çÇ× ----------------------------
function Notice_Frm(theForm)
{
	if(!theForm.subject.value){
		alert("Please input Title!");
		theForm.subject.focus(); 
		return false;
	}
	if(!theForm.body.value){
		alert("Please input content!");
		theForm.body.focus(); 
		return false;
	}
}

//----------------------- °Ô½ÃÆÇ »èÁ¦ Popup ÆäÀÌÁö ----------------------------
function Del_OpenWin(myurl){
	var window_left = (screen.width-640)/2;
	var window_top = (screen.height-480)/2;
	window.open (myurl, "mymenu", 'width=172, height=103,top=' + window_left + ',left=' + window_top + '')
}

//------------------------ »èÁ¦ ----------------------------
function Del_conf(murl) 
{
	if(confirm("Do you want this Event?"))
	window.location = murl;
}

//----------------------- °Ô½ÃÆÇ »èÁ¦ Popup ÆäÀÌÁö ----------------------------
function Del_OpenWin(myurl){
	var window_left = (screen.width-640)/2;
	var window_top = (screen.height-480)/2;
	window.open (myurl, "mymenu", 'width=172, height=103,top=' + window_top + ',left=' + window_left + '')
}

//----------------------- °Ô½ÃÆÇ COMMENT ----------------------------
function Coment_Send(theForm)
{
	if(!theForm.name.value){
		alert("ÀÌ¸§À» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.!");
		theForm.name.focus(); 
		return false;
	}
	if(!theForm.content.value){
		alert("ÄÚ¸àÆ® ³»¿ëÀ» ÀÔ·ÂÇØ ÁÖ¼¼¿ä.!");
		theForm.content.focus(); 
		return false;
	}
}

