// JavaScript Document - lets keep the js out of the htmlz plz
function showVideoPage() {
	window.open('http://www.elocallink.tv/vp2/vp6_brain.php?loc=/vp6/spon-fcsa.php&qstring=sponid%3DAD4HMg9rBW8%3D%26fvm%3D1',
	'elocallinktv',
	'scrollbars=yes,resizable=yes,width=716,height=540,left=0,top=0,ScreenX=0,ScreenY=0');
	pageTracker._trackPageview('/goal/video/video1/');
}

function checkValue(form) {
	var printerror = "The following item(s) must be filled in: ";
	if (form.Name.value == "") printerror = printerror + "\nName";
	if (form.imEmailField.value == "") printerror = printerror + "\nE-mail";
	if (form.Question.value == "") printerror = printerror + "\nQuestion";
	if (printerror == "The following item(s) must be filled in: ")
		form.submit();
	else
		alert(printerror);
}