
/******************************************************************************** 
	CableLabs Popup Window
********************************************************************************/

function PopUp1()
   {
    var ScreenWidth=window.screen.width;
    var ScreenHeight=window.screen.height;
    var movefromedge=0;
    placementx=(ScreenWidth/2)-((600)/2);
    placementy=(ScreenHeight/2)-((600+50)/2);
    var PopUpUrl="http://www.cablelabs.com"
     WinPop=window.open(PopUpUrl,"","width=600,height=550,toolbar=0,location=0,directories=0,status=0,scrollbars=1,menubar=0,resizable=1,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+",");
   }
   
/******************************************************************************** 
	Newsletter Subscription Form Validation
********************************************************************************/

function validateForm(SPECS)
{
if(""==document.forms.SPECS.Name.value){
alert("Please enter your full name.");
return false;
}
if(""==document.forms.SPECS.Email.value){
alert("Please enter your email address.");
return false;
}
}