// javascript document

function requireName() {
	var actionURL = 'http://www.purepointgolf.net/add-testimonial.php';
	var csname = document.pickdvd.csname.value;
	var csemail = document.pickdvd.csemail.value;
	var cscity = document.pickdvd.cscity.value;
	
	if ( csname == "" || csname == " " || csname == false || csname == null ) {
		alert('Sorry, we need you to include your name in the space provided.');
		exit();
	}
	
	if ( cscity == "" || cscity == " " || cscity == false || cscity == null ) {
		alert('Sorry, we need you to include the your location - City or Country - in the space provided.');
		exit();
	}
	
	if ( csemail.search("@") == -1 || csemail.search(".") == -1 ) {
		alert('Sorry, we need you to include a valid email address in the space provided.');
		exit();
	}
	
	document.pickdvd.action = actionURL;
	document.pickdvd.submit();
}



function requireVideo() {
	var actionURL = 'http://www.purepointgolf.net/cam/add-video-testimonial-thanks2.php';
	var csname = document.pickdvd.csname.value;
	var csemail = document.pickdvd.csemail.value;
	var cscity = document.pickdvd.cscity.value;
	
	if ( csname == "" || csname == " " || csname == false || csname == null ) {
		alert('Sorry, we need you to include your name in the space provided.');
		exit();
	}
	
	if ( cscity == "" || cscity == " " || cscity == false || cscity == null ) {
		alert('Sorry, we need you to include the your location - City or Country - in the space provided.');
		exit();
	}
	
	if ( csemail.search("@") == -1 || csemail.search(".") == -1 ) {
		alert('Sorry, we need you to include a valid email address in the space provided.');
		exit();
	}
	
	document.pickdvd.action = actionURL;
	document.pickdvd.submit();
}
