// JavaScript Document
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function get_radio_value()
{
for (var i=0; i < document.frmPoll.rbVote.length; i++)
   {
   if (document.frmPoll.rbVote[i].checked)
      {
      var rad_val = document.frmPoll.rbVote[i].value;
      return rad_val;		
      }
   }
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  blankWin = window.open(selObj.options[selObj.selectedIndex].value,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
  if (restore) selObj.selectedIndex=0;
}