
	
	function clearName(which3){
	if (which3.value=="Your name")
	which3.value=''
	}

	function clearEmail(which3){
	if (which3.value=="Email or phone")
	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( special.phone_number.value == '' & special.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";
		special.email.select ();
		return false;
	}
	
	return true;
}




function CheckInstaForm( instaform )
{
	var MissingFields = false;
	var strFields = "";
	
	if( instaform.email.value == '' || instaform.email.value == 'Email or phone' ){
		MissingFields = true;
//		strFields += "     Billing: First Name\n";
	}


	if( MissingFields ) {
		alert( "Please provide your email address \nor phone number." );
		instaform.email.select ();

		return false;
	}
	
	return true;
}




function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=450,left = 150,top = 150');");
}
