// JavaScript Document
window.onload = function() {
	billCountry();
	shipCountry();
}

function billCountry() {
	if (document.getElementById("billCountryValue").value == 'United States') { 
		document.getElementById("bill_state_container").style.display = "table-row";
		document.getElementById("bill_prov_container").style.display = "none";
	} else {
		document.getElementById("bill_state_container").style.display = "none";
		document.getElementById("bill_prov_container").style.display = "table-row";
	}
}

function shipCountry() {
	if (document.getElementById("shipCountryValue").value == 'United States') { 
		document.getElementById("ship_state_container").style.display = "table-row";
		document.getElementById("ship_prov_container").style.display = "none";
	} else {
		document.getElementById("ship_state_container").style.display = "none";
		document.getElementById("ship_prov_container").style.display = "table-row";
	}
}

function shippingSame() {
	if (document.myform.address_same.checked == true) { 
		document.getElementById("shipping_container").style.display = "inline";
	} else {
		document.getElementById("shipping_container").style.display = "none";
	}
}

function shippingRegionUS() {
	document.getElementById("state").style.display = "inline";
	document.getElementById("region").style.display = "none";
	document.getElementById("country").style.display = "none";
}

function shippingRegionInt() {
	document.getElementById("region").style.display = "inline";
	document.getElementById("state").style.display = "none";
	document.getElementById("country").style.display = "table-row";
}


function checkPrints() {
	if (document.getElementById("attr_Print").value == "") {
		document.getElementById("selectPrintError").style.display = "inline";
	}
}

function enterFirstName() {
	if (document.contact_form.first_name.value == "First") {
		document.contact_form.first_name.value = "";
	}
	document.getElementById("first_name").style.color = "#000000";
}

function exitFirstName() {
	if (document.contact_form.first_name.value == "") {
		document.contact_form.first_name.value="First";
		document.getElementById("first_name").style.color = "#666666";
	}
}


function enterLastName() {
	if (document.contact_form.last_name.value == "Last") {
		document.contact_form.last_name.value = "";
	}
	document.getElementById("last_name").style.color = "#000000";
}

function exitLastName() {
	if (document.contact_form.last_name.value == "") {
		document.contact_form.last_name.value="Last";
		document.getElementById("last_name").style.color = "#666666";
	}
}

function enterEmail() {
	if (document.contact_form.email.value == "email@domain.com") {
		document.contact_form.email.value = "";
	}
	document.getElementById("email").style.color = "#000000";
}

function exitEmail() {
	if (document.contact_form.email.value == "") {
		document.contact_form.email.value="email@domain.com";
		document.getElementById("email").style.color = "#666666";
	}
}

function enterPhone() {
	if (document.contact_form.phone.value == "555-123-4567") {
		document.contact_form.phone.value = "";
	}
	document.getElementById("phone").style.color = "#000000";
}

function exitPhone() {
	if (document.contact_form.phone.value == "") {
		document.contact_form.phone.value="555-123-4567";
		document.getElementById("phone").style.color = "#666666";
	}
}

function resetPrice() {
	document.getElementById('product_price').style.display = none;
	document.getElementById('product_price1').style.display = inline;
}