<!--

window.name = "sixtee7";

function new_window(URL,NAME,FEATURES){                  
	popup_window = window.open(URL,NAME,FEATURES);
	if (window.focus) {
		popup_window.focus();
	}
}

function formChecker(form) {
	if (form.email.value == "") {
		alert ("You need to give your Email Address");
		return false;
	}
	if (form.email.value.indexOf('@') == -1 || form.email.value.indexOf('.') == -1) {
		alert ("You have not entered a valid email address");
		return false;
	}
	if (form.comment.value == "") {
		alert ("You need to add your Comments");
		return false;
	}
	if (form.name.value == "") {
		alert ("You need to tell us your name");
		return false;
	}
}	

function mainSites(x) {
	if (x != "") {
		self.location=x;
	}
}
//-->
