//°Ô½ÃÆÇ È®ÀÎ
function enter()    {
	var m = document.form;
	  if (m.title.value=="") {
	      alert("Á¦¸ñÀ» ÀÔ·ÂÇÏ¼¼¿ä!");
	      m.title.focus();
	      return ;	  
	  }

	 if (m.name.value=="") {
	      alert("ÀÌ¸§À» ÀÔ·ÂÇÏ¼¼¿ä!");
	      m.name.focus();
	      return ;	  
	  } 

	  if (m.password.value=="") {
	      alert("ÆÐ½º¿öµå¸¦ ÀÔ·ÂÇÏ¼¼¿ä!");
	      m.password.focus();
	      return ;	  
	  } 

	  /* if (m.email.value) {
		  var str = m.email.value;

		  if( str.match(/[\w\-\~]+\@[\w\-\~]+(\.[\w\-\~]+)+/g)!=str ) {
			alert("Á¤È®ÇÑ ÀÌ¸ÞÀÏÁÖ¼Ò¸¦ ³Ö¾îÁÖ¼¼¿ä");
			m.email.value="" ;
			m.email.focus() ;
			return;
		  }
	   }*/

	   if (m.content.value=="") {
	      alert("³»¿ëÀ» ÀÔ·ÂÇÏ¼¼¿ä!");
	      m.content.focus();
	      return ;	  
	  } 
 
	  m.submit();	  	  
}

function admin_popup()
{
window.open('admin_check.htm', '°ü¸®ÀÚÈ®ÀÎ' ,'scrollbars=no,resizable=no,history=no,left='+(screen.width/3)+',top='+(screen.height/3)+',width=300,height=150');
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

<!--onfocus-->
function bluring(){ 
if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") document.body.focus(); 
} 
document.onfocusin=bluring; 
