
function validateContactForm($) {
	var message = "";
	if ($("input[name='Name']").val().length < 3 && $("input[name='Business_Name']").val().length < 3){
		message += "Please enter your name or your business name\n";
	}
	if ( !isValidEmail($("input[name='Email']").val()) && $("input[name='Phone']").val().length < 3){
		message += "Please enter a contact phone number or an email address\n";
	}
	if(message.length > 1){
		alert(message);
		return false;
	}else{
		return true;
	}
}

function isValidEmail(email) {
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email)){
		return true;
	}else{
		return false;
	}
}

function popUp(URL, wt, ht, tp, lft) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+wt+",height="+ht+",left ="+lft+",top ="+tp+"');");
}
