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

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

function clearstate()
{
    if (document.form.State.value == "AA" ){
		document.form.State.style.color="#000000"; 
	}
}

function clearphone()
{
    if (document.form.Phone.value == "Phone Number" ){
		document.form.Phone.style.color="#000000"; document.form.Phone.value="";

	}
}


function clearbesttime()
{
    if (document.form.besttime.value == "AA" ){
		document.form.besttime.style.color="#000000"; 
	}
}

function clearcountry()
{
    if (document.form.Country.value == "AA" ){
		document.form.Country.style.color="#000000"; 
	}
}


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

    if (document.form.firstname.value == "" ) {
		document.form.firstname.style.color="#333"; document.form.firstname.value="First Name";
	}
		
    if (document.form.State.value == "AA" ) {
		document.form.State.style.color="#333";
	}

    if (document.form.Phone.value == "" ) {
		document.form.Phone.style.color="#333"; document.form.Phone.value="Phone Number";
	}
	else if (document.form.Phone.value != "Phone Number")
	{
		var num = document.form.Phone.value.replace(/[^\d]/g,''); 
		
		if (num.length == 10) 
		{ 
			document.form.Phone.value = "(" + num.substring(0,3) + ")-" + num.substring(3, 6) + "-" + num.substring(6);
		}
	}

    if (document.form.Country.value == "AA" ) {
		document.form.Country.style.color="#333";
	}
	
    if (document.form.besttime.value == "AA" ) {
		document.form.besttime.style.color="#333";
	}
	
	
}

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