<!--
function validate_LoginForm() {

	if (trimString(document.agent_login_form.AgentLogin.value) == "")
	{
		alert("Please enter your Agent Login");
		return;
	}

	if (trimString(document.agent_login_form.AgentPassword.value) == "")
	{
		alert("Please enter your Agent Password");
		return;
	}

		
	// ************************************************************************************	

	// ************************************************************************************	
	// ************************************************************************************	


document.getElementById('login_form_submit').innerHTML = "<span class=\"errormessage\">Request processing, please wait ...</span>";
document.agent_login_form.submit();

}



//-->
