

function focus_text(val)
	{
		var vl=val;
		if (document.form1.txtUsername.value==vl)
		{
			document.form1.txtUsername.value="";
		}
		else if (document.form1.email.value==vl)
		{
			document.form1.email.value="";
		}
		else if (document.form1.phone.value==vl)
		{
			document.form1.phone.value="";
		}
		else if (document.form1.requirement.value==vl)
		{
			document.form1.requirement.value="";
		}
			
		
	}
	
function blur_text(val)
	{
		var vl=val;
		if (document.form1.txtUsername.value=="")
		{
			document.form1.txtUsername.value=vl;
		}
		else if (document.form1.email.value=="")
		{
			document.form1.email.value=vl;
		}
		else if (document.form1.phone.value=="")
		{
			document.form1.phone.value=vl;
		}
		else if (document.form1.requirement.value=="")
		{
			document.form1.requirement.value=vl;
		}
			
	}
	
function focus_pass()
	{
		
		if (document.form1.txtPassword.value=="password")
			document.form1.txtPassword.value="";
		
	}
	
function blur_pass()
	{
		if (document.form1.txtPassword.value=="")
			document.form1.txtPassword.value="password";
			
	}
	