function validate(formname)	{
	var fullalert = "";
	var popalert = false;
	
	if (formname.Reporter_Name.value == "") {fullalert += "Your Name\r\n"; popalert = true;}
	if (formname.ph_1.value == "" || formname.ph_2.value == "" || formname.ph_3.value == "") {fullalert += "Phone\r\n"; popalert = true;}
	if (formname.City.value == "") {fullalert += "City\r\n"; popalert = true;}
	if (formname.State.value == "") {fullalert += "State\r\n"; popalert = true;}
	//if (formname.Approximate_Address.value == "" && formname.Cross_Streets.value == "") {fullalert += "Nearest Address and/or Nearest Cross Streets\r\n"; popalert = true;}
	for (var n = 0; n < formname.elements.length; n++) {
		if (typeof formname.elements[n].name == 'undefined') {continue;}
		if (formname.elements[n].name.indexOf('Cross_Streets__') != -1) {
			if (formname.elements[n].value == '') {
				fullalert += "Nearest Cross Streets\r\n";
				popalert = true;
				}
			}
		}
	
	if (popalert)	{
		alert("Please fill out the following fields:\r\n"+fullalert);
		return false;
		}
	
	return true;
	}

