	function clearval(object,val)
	{
		if (object=="name")
		{
			if (document.f1.name.value=="Your name")
			{
				document.f1.name.value="";
			}
		}
		if (object=="email")
		{
			if (document.f1.email.value=="Your email")
			{
				document.f1.email.value="";
			}
		}
		if (object=="comment")
		{
			if (document.f1.comment.value=="Your comments")
			{
				document.f1.comment.value="";
			}
		}
	}

	function restoreval(object,val)
	{
		if (object=="name")
		{
			if (document.f1.name.value=="")
			{
				document.f1.name.value="Your name";
			}
		}
		if (object=="email")
		{
			if (document.f1.email.value=="")
			{
				document.f1.email.value="Your email";
			}
		}
		if (object=="comment")
		{
			if (document.f1.comment.value=="")
			{
				document.f1.comment.value="Your comments";
			}
		}	
	}
