

	function clearLooking(which3){
	if (which3.value=="Email address or phone number")
	which3.value=''
	}

	function clearArea(which3){
	if (which3.value=="A brief description of your problem. You can skip this if you want.")
	which3.value=''
	}





function CheckForm( theform )
{
	var bMissingFields = false;
	var strFields = "";
	
	if( theform.Phone.value == '' & theform.email.value ==  '' ){
		bMissingFields = true;
	}

		
	if( bMissingFields ) {
		alert( "Please provide your phone number\nor email address before continuing." );
		emailwarn.style.backgroundColor = "#ffce9d";
		emailwarn.style.color = "#000000";
		phonewarn.style.backgroundColor = "#ffce9d";
		phonewarn.style.color = "#000000";
		theform.email.select ();
		return false;
	}
	
	return true;
}




function CheckInstaForm( instaform )
{
	var MissingFields = false;
	var strFields = "";
	
	if( instaform.email_or_phone.value == '' || instaform.email_or_phone.value == 'Email address or phone number' ){
		MissingFields = true;
//		strFields += "     Billing: First Name\n";
	}


	if( MissingFields ) {
		alert( "Please provide your email address \nor phone number." );
		instaform.email_or_phone.select ();

		return false;
	}
	
	return true;
}

