function CheckSubmission(e, eventer)
{
	var key;

	if(window.event){
		key = window.event.keyCode;     //IE
	}
	else{
		key = e.which;     //firefox
	}

	if(key == 13)
	{
		__doPostBack(eventer,'')
		return false;
	}
	else{
		return true;
	}
			
}
function PopupWin(){
	///Parameters url=page to open, w=width, h=height
	var url = "http://www.google.com";
	var h = 800;
	var w = 600;
	window.open(url, "external", "width=" + w +",height=" + h + ",resizable=no,scrollbars=no,status=no,location=no,toolbar=no,menubar=no");
}
function callSubmit(){
	document.forms[0].method = "POST";
	document.forms[0].action = "https://www.geonlineapply.com/servlet/MCSGenericApp";
	document.forms[0].submit();
	return window.open(url, "external", "width=" + w +",height=" + h + ",resizable=no,scrollbars=no,status=no,location=no,toolbar=no,menubar=no");
}
function LaunchPopup(page,width,height) {
	OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=no,location=yes,scrollbars=yes,resizable=yes,dependent=no,directories=no,width=" + width + ",height=" + height + ",x=50,y=50");
			}

