function reSize( MinHeight, ScrollHeight, ifrmName)
{
	var ParentFrame	    =	document.body;
	var ContentFrame	=	eval("document.all[\""+ifrmName +"\"]");

	if ( ScrollHeight > MinHeight )
		ContentFrame.style.height = ScrollHeight +10;
	else
		ContentFrame.style.height = MinHeight;
}


function NumObjMsg(obj){
   if( event.keyCode == 13 ){
   		GoAction(obj);
   		return true;
   }
   
	if (event.keyCode >= 48 && event.keyCode <= 57) { //¼ýÀÚÅ°¸¸ ÀÔ·Â
		obj.ALERT_MSG.value=""
		return true;
	} else {
		obj.ALERT_MSG.value="* ¼ýÀÚ¸¸ ÀÔ·Â °¡´É *"
		event.returnValue = false;
	}
}


function openWindow(theURL, winName, feature) {
	var tmp_focus;
	
	if (feature=="" || feature==null) {
		tmpFocus = window.open(theURL, winName );
	} else {
		tmpFocus = window.open(theURL, winName, feature );
	}
	
	tmpFocus.focus();
}
