// JavaScript Document
	function CheckGotFocus(Field)
	{
		var lStrFieldName=Field;
		if (lStrFieldName=="txtName")
		{
			if (document.form1.txtName.value=="Name")
			{
				document.form1.txtName.value = "" ;
			}
		}
		
		if (lStrFieldName=="txtAddress")
		{
			if (document.form1.txtAddress.value=="Address me as")
			{
				document.form1.txtAddress.value = "" ;
			}
		}
		
		if (lStrFieldName=="txtPhone")
		{
			if (document.form1.txtPhone.value=="Phone")
			{
				document.form1.txtPhone.value = "" ;
			}
		}
		
		if (lStrFieldName=="txtEmail")
		{
			if (document.form1.txtEmail.value=="E mail")
			{
				document.form1.txtEmail.value = "" ;
			}
		}
		
		if (lStrFieldName=="txtComment")
		{
			if (document.form1.txtComment.value=="Enter Comments")
			{
				document.form1.txtComment.value = "" ;
			}
		}
		
	}
	
	function CheckLostFocus(Field)
	{
		var lStrFieldName=Field;
		if (lStrFieldName=="txtName")
		{
			if (document.form1.txtName.value=="")
			{
				document.form1.txtName.value = "Name" ;
			}
		}
		
		if (lStrFieldName=="txtAddress")
		{
			if (document.form1.txtAddress.value=="")
			{
				document.form1.txtAddress.value = "Address me as" ;
			}
		}
		
		if (lStrFieldName=="txtPhone")
		{
			if (document.form1.txtPhone.value=="")
			{
				document.form1.txtPhone.value = "Phone" ;
			}
		}
		
		if (lStrFieldName=="txtEmail")
		{
			if (document.form1.txtEmail.value=="")
			{
				document.form1.txtEmail.value = "E mail" ;
			}
		}
		
		if (lStrFieldName=="txtComment")
		{
			if (document.form1.txtComment.value=="")
			{
				document.form1.txtComment.value = "Enter Comments" ;
			}
		}
		
	}