var    _intValue   = '0123456789';
var ObjWin = true;
var	   _checkNumValue   = '0123456789.';
var    _upperValue = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';
var    _lowerValue = 'abcdefghijklmnopqrstuvwxyz';
var    _lowerEngNumValue = '0123456789abcdefghijklmnopqrstuvwxyz';

/*===================================================================================
  °øÅëÀ¸·Î »ç¿ëÇÏ´Â java script ¸¦ ¸ð¾Æ³õÀº È­ÀÏÀÔ´Ï´Ù.
====================================================================================*/

function autoObject(id){
    document.write(id.text);
    id.id='';
}

function openPopup( swidth, sheight, popupName, open_url )
{
	if ( ObjWin.closed == false )
    {
	       ObjWin.close();
    }
    
    var height = screen.height; 
    var width = screen.width; 
    var cleft = ( width - swidth ) / 2 ; 
    var ctop = ( height - sheight ) / 2 ; 
    var cScroll = 0;
    var cResize = 0;
    var cTool = 0;
    var sWinopts = 'left='+cleft+', top='+ctop+', width='+swidth+', height='+sheight+', location=0,directories=0,status=0,menubar=0, scrollbars='+cScroll+', toolbar='+cTool+', resizable='+cResize;
    //alert(open_url);
    //window.open( open_url ,popupName,sWinopts);	
    ObjWin = window.open( open_url, "" ,sWinopts );
}
