function MouseOn(obj)
{
    obj.src = obj.src.replace("off.gif", "on.gif");
}
function MouseOut(obj)
{
    obj.src = obj.src.replace("on.gif", "off.gif");
}

function tblHover(obj, highlightcolor, textcolor){
                obj.style.backgroundColor = highlightcolor;
                obj.style.color = textcolor;
}

function radioOn(nr){
if (nr==1){
  document.getElementById('Radio1').checked = true;
}
if (nr==2){
  document.getElementById('Radio2').checked = true;
}
if (nr==3){
  document.getElementById('Radio3').checked = true;
}
if (nr==4){
  document.getElementById('Radio4').checked = true;
}
if (nr==5){
  document.getElementById('Radio5').checked = true;
}
if (nr==6){
  document.getElementById('Radio6').checked = true;
}
if (nr==7){
  document.getElementById('Radio7').checked = true;
}
if (nr==8){
  document.getElementById('Radio8').checked = true;
}
if (nr==9){
  document.getElementById('Radio9').checked = true;
}
  void(0);
}


