function OpenNewWindow(url)
{
	var NewWinHeight=screen.height - 45;
	var NewWinWidth=860;
	var NewWinPutX=screen.width / 2 - NewWinWidth / 2;
	var NewWinPutY=10;
	TheNewWin=window.open(url,'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes');
	TheNewWin.resizeTo(NewWinWidth,NewWinHeight);
	TheNewWin.moveTo(NewWinPutX,NewWinPutY);
}
function OpenNewWindowVideo(url)
{
	var NewWinHeight=600;
	var NewWinWidth=645;
	var NewWinPutX=screen.width / 2 - NewWinWidth / 2;
	var NewWinPutY=10;
	TheNewWin=window.open(url,'TheNewpop','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes');
	TheNewWin.resizeTo(NewWinWidth,NewWinHeight);
	TheNewWin.moveTo(NewWinPutX,NewWinPutY);
}
function SetUniqueRadioButton(nameregex, current)
{
   re = new RegExp(nameregex);
   for(i = 0; i < document.forms[0].elements.length; i++)
   {
      elm = document.forms[0].elements[i]
      if (elm.type == 'radio')
      {
         if (re.test(elm.name))
         {
            elm.checked = false;
         }
      }
   }
   current.checked = true;
}