<!-- hide from old browsers

function verifydelete(siteid) {
	if (confirm("Are you sure that you want to delete this site record?")) {
		document.location.href='/scripts/includes/localsites/editdir.asp?status=delete&siteid=' + siteid;
		}
}

function ValidSite() {
	if (document.siteform.sitename.value == "" || document.siteform.sitename.value == null) {
		alert("You have not stated the name of the site.")
		document.siteform.sitename.focus();
		return false;
	}
	
	var len = document.siteform.sitename.value.split(' ').length;
	
	  if (len > 10) {
			alert("The site name you have given is too long. Please reduce it to 10 words or less.")
			document.siteform.sitename.focus();
			return false
		}
	
	if (document.siteform.siteurl.value == "" || document.siteform.siteurl.value == "http://" || document.siteform.siteurl.value == null) {
		alert("You have not give a web address for the site.")
		document.siteform.siteurl.focus();
		return false;
	}
	
	if (document.siteform.category.value == "" || document.siteform.category.value == null) {
		alert("You have not chosen a category.")
		document.siteform.category.focus();
		return false;
	}

	if (document.siteform.description.value == "" || document.siteform.description.value == null) {
		alert("You have not entered a description.")
		document.siteform.description.focus();
		return false;
	}

	  var len = document.siteform.description.value.split(' ').length;
	
	  if (len > 60) {
			alert("The description you have given is too long. Please reduce it to 60 words or less.")
			document.siteform.description.focus();
			return false
		}
			
	if (document.siteform.submittedbyname.value == "" || document.siteform.submittedbyname.value == null) {
		alert("You have not entered a contact name.")
		document.siteform.submittedbyname.focus();
		return false;
	}
	
	
	if (document.siteform.submittedbyemail.value == "" || document.siteform.submittedbyemail.value == null) {
		alert("You have not entered a contact email address.")
		document.siteform.submittedbyemail.focus();
		return false;
	}

	if (document.siteform.captchatext.value == "" || document.siteform.captchatext.value == null) {
		alert("Please enter the text displayed on the image.")
		document.siteform.captchatext.focus();
		return false;
	}
	

	return true;
}
// stop hiding -->
