// Global Popup Window
function popWin(height,width,url)
{
	window.open(
	url,
	"RegHelp",
	"toolbar=no,location=no,resizable=no,scrollbars=yes,status=no,height="+height+",width="+width);
}


// PopUp window for Video 
function WinOpen(URL)
{
	videoWindow = window.open(
	URL,
	"RegHelp",
	"toolbar=no,location=no,resizable=no,scrollbars=no,status=no,height=455,width=535");
	videoWindow.focus();
}

// Popup window the Newsletter Error page to the Contact Us page
function WinOpen2(URL)
{
	window.open(
	URL,
	"RegHelp",
	"toolbar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes,height=760,width=600");
}



// Newsletter popup
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');
}
