<!--//
function vAlert()
{
var formArray = new Array("name","address", "city",  "zip")
var formArrayDesc = new Array("Name","Address", "City",  "Zip")
var i;
	for (i = 0;i< formArray.length;i++){	
	if	(navigator.platform.indexOf("mac") == -1 &&	navigator.appName.indexOf("Netscape") == -1){
			var thisText = 'form' + formArray[i];
		document.form1[formArray[i]].style.backgroundColor = "";
		//document.getElementById(thisText).style.color = '';
	}	
		/*if ((formArray[i] == 'email') && ((document.form1[formArray[i]].value.indexOf('@') == -1) 
		|| (document.form1[formArray[i]].value.length < 6) || (document.form1[formArray[i]].value.indexOf('.') == -1))){
			alert('Please enter a properly formatted email address');
			return vLite(formArray[i])
			}*/
			
		 	if (document.form1[formArray[i]].value == ''){
			alert(formArrayDesc[i] + ' is a required field');
			return vLite(formArray[i])
		}
	}
	
	if(document.form1["country"].value=="" && document.form1["state"].selectedIndex==0){
			alert("Select either a state or country");
			return vLite("state");
		}
	
	form1["submit"].value = "Processing...";
}

function vLite(item) {
	var thisText = 'form' + item;
	if	(navigator.platform.indexOf("mac") == -1 &&	navigator.appName.indexOf("Netscape") == -1) {
		document.form1[item].style.backgroundColor = "#83FF06";
		document.form1[item].value = document.form1[item].value;
		//document.getElementById(thisText).style.color = "#FE075E";
	}
	document.form1[item].focus();
	return false;
}
//-->