///////////////////////////////////////////////////////////////////////////////
//																////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
function isNum(str)
{
  	for(i = 0; i < str.length; i++)
  	{
    		ch = str.charAt(i);
    		if(ch < "0" || ch > "9")
    		return false;
  	}

	  return true;
} 


///////////////////////////////////////////////////////////////////////////////
// Æ¯¼ö¹®ÀÚ Ã¼Å©											////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
function checkSpecialChar(str)
{
	var nonChar = '~`!@#$%^&*()-_=+\|<>?,./;:"';
	var numeric = '1234567890';
	var nonKorean = nonChar + numeric;

	var i ;
	for ( i=0; i < str.length; i++ )  {
		if( nonKorean.indexOf(str.substring(i,i+1)) > 0) {
			break ;
		}
	}
	if ( i != str.length ) {
		return false ;
	}
	else{
		return true ;
	}

	return false;
}


///////////////////////////////////////////////////////////////////////////////
// ÄíÅ° ÀÔ·Â												////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
function set_cookie(name, value, expirehours) 
{
	var today = new Date();
	today.setTime(today.getTime() + (60*60*1000*expirehours));
	document.cookie = name + "=" + escape( value ) + "; path=/; expires=" + today.toGMTString() + ";";
}



///////////////////////////////////////////////////////////////////////////////
// ÆË¾÷Ã¢1													////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
function popup(url, winname, width, height){
	var url, winname, width, height;
	window.open(url, winname, "left=100,top=100,width="+width+",height="+height+",toolbar=no,status=no,directories=no,scrollbars=no,location=no,resizable=no,menubar=no,statusbar=no")
}




///////////////////////////////////////////////////////////////////////////////
// ÆË¾÷Ã¢2													////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////
function popup_scroll(url, winname, width, height){
	var url, winname, width, height;
	window.open(url, winname, "left=100,top=100,width="+width+",height="+height+",toolbar=no,status=no,directories=no,scrollbars=yes,location=no,resizable=no,menubar=no,statusbar=no")
}
