// JavaScript Document
	function blankFirstName() {
		if (document.info_form.FirstName.value == document.info_form.FirstName.defaultValue) 
			document.info_form.FirstName.value = ""; 
		else if (document.info_form.FirstName.value == '') 
			document.info_form.FirstName.value = " first name"; 
	}
	function blankLastName() {
		if (document.info_form.LastName.value == document.info_form.LastName.defaultValue) 
			document.info_form.LastName.value = ""; 
		else if (document.info_form.LastName.value == '') 
			document.info_form.LastName.value = " last name"; 
	}
	function blankStreetAddress() {
		if (document.info_form.StreetAddress.value == document.info_form.StreetAddress.defaultValue) 
			document.info_form.StreetAddress.value = ""; 
		else if (document.info_form.StreetAddress.value == '') 
			document.info_form.StreetAddress.value = " street address"; 
	}
	function blankAddress2() {
		if (document.info_form.Address2.value == document.info_form.Address2.defaultValue) 
			document.info_form.Address2.value = ""; 
		else if (document.info_form.Address2.value == '') 
			document.info_form.Address2.value = " address continued"; 
	}
	function blankCity() {
		if (document.info_form.City.value == document.info_form.City.defaultValue) 
			document.info_form.City.value = ""; 
		else if (document.info_form.City.value == '') 
			document.info_form.City.value = " city"; 
	}
	function blankZip() {
		if (document.info_form.zip.value == document.info_form.zip.defaultValue) 
			document.info_form.zip.value = ""; 
		else if (document.info_form.zip.value == '') 
			document.info_form.zip.value = " zip code"; 
	}
	function blankPhone() {
		if (document.info_form.phone.value == document.info_form.phone.defaultValue) 
			document.info_form.phone.value = ""; 
		else if (document.info_form.phone.value == '') 
			document.info_form.phone.value = " phone"; 
	}
	function blankEmail() {
		if (document.info_form.email.value == document.info_form.email.defaultValue) 
			document.info_form.email.value = ""; 
		else if (document.info_form.email.value == '') 
			document.info_form.email.value = " email"; 
	}
	function blankHear() {
		if (document.info_form.hear.value == document.info_form.hear.defaultValue) 
			document.info_form.hear.value = ""; 
		else if (document.info_form.hear.value == '') 
			document.info_form.hear.value = " how did you hear about us?";
	}
	function blankPriceRange() {
		if (document.info_form.PriceRange.value == document.info_form.PriceRange.defaultValue) 
			document.info_form.PriceRange.value = ""; 
		else if (document.info_form.PriceRange.value == '') 
			document.info_form.PriceRange.value = " price range";
	}
	function submitform() {
		document.info_form.submit();
	}
	function resetform() {
		document.info_form.reset();
	}