
function openVideo(windowFilename, winName, windowWidth, windowHeight) {
	window.open(windowFilename, winName, 'width=' + windowWidth +',height=' + windowHeight + ',scrollbars=no,top=100,left=100'); 
}

function checkQuickForm() {
	if(quickForm.name.value.length == 0) {
		alert("Please enter your full name");
		return false;
	} else if(quickForm.phone.value.length == 0) {
		alert("Please enter your phone number");
		return false;
	} else if(quickForm.email.value.length == 0) {
		alert("Please enter your email address");
		return false;
	} else return true;
}
