function openWindow(theURL,winName,features) {
window.open(theURL,winName,features);
}

function newwin(location) {
   window.open(location,'window',"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,height=416,width=350");
}

//newsletter popup function
function newsPopup (){
	resultWindow = "/newsletter/processing.html";
	window.open(resultWindow,'popup','width=360,height=400,toolbar=no,location=no,resizable=no,scrollbars=no,status=yes,left=10,top=10,screenX=10,screenY=10');
}

//video multiplayer popup function
function Video(URL)
{
	window.open(
	URL,
	"RegHelp",
	"screenX=10,screenY=10,toolbar=no,location=no,resizable=no,scrollbars=no,status=no,height=550,width=775");
}

//newsletter error popup function
function popWIN(URL){
window.open(URL,"HBO Latino","screenX=10,screenY=10,left=10,top=10,toolbar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,height=600,width=800");
window.close();
}

// Standard window.open script.
function WinOpen(height,width,url)
{
	window.open(
	url,
	"RegHelp",
	"toolbar=no,location=no,resizable=yes,scrollbars=yes,status=yes,height="+height+",width="+width);
}

