// JavaScript Document

function resetform()
{
if (document.form.firstname.value == "" )
	{
		document.form.firstname.style.color="#BEBEBE";
		document.form.firstname.value="First Name";
	}
	
if (document.form.from.value == "") 
	{
		document.form.from.style.color="#BEBEBE";
		document.form.from.value="Best Email";
	}
}

function clearname()
{
if (document.form.firstname.value == "First Name" )
	{
		document.form.firstname.style.color="#000000";
		document.form.firstname.value="";
	}
}

function clearemail()
{
if (document.form.from.value == "Best Email" )
	{
		document.form.from.style.color="#000000";
		document.form.from.value="";
	}
}

function copyname()
{
		document.form.name.value = document.form.firstname.value;
	
}

