function validate()
{
 if (document.frm.text2.value=="mkmpartners")
	{ 
	 if (document.frm.text1.value=="welcome")
		{		
		 window.location.href="client_access.html"
		 }
		
	 if (document.frm.text1.value=="")
		{		
		 window.location.href="failure.html"
		 }
		 
		 if (document.frm.text1.value!="welcome")
		{		
		 window.location.href="failure.html"
		 }
	}
	
		
	
	else
	{
		window.location.href="failure.html"
	}
}