// JavaScript Document
function clearbestemail()
{
    if (document.form.email.value == "Best Email" ){
		document.form.email.style.color="#000000"; document.form.email.value="";
	}
}

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

function clearphone()
{
    if (document.getElementById("awf_field-633639").value == "Phone Number" ){
		document.getElementById("awf_field-633639").style.color="#000000"; document.getElementById("awf_field-633639").value="";
	}
}

function cleardid()
{
    if (document.getElementById("awf_field-633638").value == "ID (from ad)" ){
		document.getElementById("awf_field-633638").style.color="#000000"; document.getElementById("awf_field-633638").value="";
	}
}

function resetsubscribeform()
{
    if (document.form.email.value == "" ) {
		document.form.email.style.color="#666"; document.form.email.value="Best Email";
	}

    if (document.form.firstname.value == "" ) {
		document.form.firstname.style.color="#666"; document.form.firstname.value="First Name";
	}
	
    if (document.getElementById("awf_field-633639").value == "" ) {
		document.getElementById("awf_field-633639").style.color="#666"; document.getElementById("awf_field-633639").value="Phone Number";
	}
	
	if (document.getElementById("awf_field-633638").value == "" ) {
		document.getElementById("awf_field-633638").style.color="#666"; document.getElementById("awf_field-633638").value="ID (from ad)";
	}
		
}

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