function verifyHuman(formName) {
	document[formName].h_formValidated.value = 'true'
}

function youtubePopup2(vId, title) 
{
 var width  = 500;
 var height = 450;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 var params = 'width='+width+', height='+height;
 params += ', top='+top+', left='+left;
 params += ', location=no';
 params += ', menubar=no';
 params += ', resizable=no';
 params += ', scrollbars=no';
 params += ', status=no';
 params += ', toolbar=no';
 newwin=window.open("youtube.php?vid="+vId+"&title="+title, "","", params);
 if (window.focus) {newwin.focus()}
 return false;
}


function youtubePopup(vId, title) {

 var width  = 500;
 var height = 450;
 var left   = (screen.width  - width)/2;
 var top    = (screen.height - height)/2;
 
window.open ("youtube.php?vid="+vId+"&title="+title, "", "resizable=no,menubar=no,scrollbars=no,toolbar=no,location=no,status=no,top="+top+",left="+left+",HEIGHT="+height+",WIDTH="+width+"");
}

