// JavaScript Document

function __doPostBack(eventTarget, eventArgument) {
	var theForm = document.forms['aspnetForm'];
if (!theForm) {
    theForm = document.aspnetForm;
}
    if (!theForm.onsubmit || (theForm.onsubmit() != false))
	 {
		 if(theForm.ctl00_MPH_txtUserName.value=="")
	{
		alert("Please Enter Username.")
		return false
	}
	if(theForm.ctl00_MPH_txtPassword.value=="")
	{
		alert("Please Enter Password.")
		return false
	}
    x=theForm.ctl00_MPH_txtUserName.value
	theForm.ctl00_MPH_txtUserName.value=x+"@proflexcables.com"
	
	    theForm.__EVENTTARGET.value = eventTarget; 
        theForm.__EVENTARGUMENT.value = eventArgument;
        theForm.submit();
    }
}



