/*********************************************************
*  My Java Scripts Library
*  Create on 3/08/03
*  Woravasu Warakasamesirirat
*  mercichan@yahoo.com
*  www.asiaeserver.com
*********************************************************/

defaultStatus = "Domain Management Systems";

// First function for open new windows
var win = null;
function NewWindow(mypage,myname,w,h,scroll)
{
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
	win = window.open(mypage,myname,settings)
	if(win.window.focus){win.window.focus();}
}

	function check_email()
	{
		e_k=event.keyCode
		if ((e_k > 160)) {
		event.returnValue = false;
		alert("กรุณากรอกเป็นอังกฤษ ครับ");
		}
	}
	
	function check_number() 
	{
		e_k=event.keyCode
		//if (((e_k < 48) || (e_k > 57)) && e_k != 46 ) {
		if (e_k != 13 && (e_k < 48) || (e_k > 57)) {
		event.returnValue = false;
		alert("กรุณากรอกเป็นตัวเลขเท่านั้น");
		}
	}

	function StatusMsg(msgStr) 
	{ 
	  status=msgStr;
	  document.returnValue = true;
	}