
function openNewWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}

   function openWindow(freshurl)
	{
	    SmallWin = window.open(freshurl, 'HelpWindow','scrollbars=yes,resizable=yes,toolbar=no,height=480,width=471');

		if( ! isIE4() )
		{
            if (window.focus) {
                SmallWin.focus();
            }
		}

	    if (SmallWin.opener == null) SmallWin.opener = window;
            SmallWin.opener.name = "PUMain";
	}