
	function fncPopupwindow(strURL,strWindowname,strOptions)
	{
		eval(strWindowname + " = window.open(strURL,strWindowname,strOptions)");
	}
	function OpenEmailWindow()
	{	
		var caseno,akanum,fullname;
		caseno=window.document.Form1.hdnCaseNo.value;
		akanum=window.document.Form1.hdnAKANUM.value
		fullname=window.document.Form1.hdnFullName.value
		//window.form("hdnCaseNO").value		
		//caseno="756812";
		var strURL;
		var strWindowname;
		var strOptions;		
		strURL="EmailServiceInfo.aspx?CaseNo=" + caseno + "&AKA_NUM=" + akanum + "&FullName=" + fullname;		
		strWindowname="ServiceNotifier";
		strOptions="menubar=no,scrollbars=no,resizable=no,width=470,height=600";
		eval(strWindowname + " = window.open(strURL,strWindowname,strOptions)");		
	}
	function txtLastName_KeyDown()
	{
		
	}
	function txtLastName_KeyPress()
	{
		if(window.event.keyCode==13) //Press Enter
		{
//			document.Form1.IsUserPressEnter.value=true;
			//document.Form1.IsUserPressEnter.value=window.event.keyCode;
			///return true;
		}
		else
		{
//			document.Form1.IsUserPressEnter.value=false;
			//document.Form1.IsUserPressEnter.value=window.event.keyCode;
			//return false;
		}		
		//alert(window.event.keyCode);
		//alert(document.Form1.IsUserPressEnter.value);	
	}
	function resetvalues()
	{
		//document.Form1.txtLastName.value="";
		//document.Form1.IsUserPressEnter=false;
//		document.Form1.IsUserPressEnter.value=false;
//		document.Form1.txtLastName.focus();
	}
	
