function switchdiv(id)
{
document.getElementById(id).style.display= (document.getElementById(id).style.display == 'block' ? 'none' : 'block');
}
 
jsHover = function() {
  var hEls = document.getElementById("nav").getElementsByTagName("LI");
  for (var i=0, len=hEls.length; i<len; i++) {
    hEls[i].onmouseover=function() { this.className+=" jshover"; }
    hEls[i].onmouseout=function() { this.className=this.className.replace(" jshover", ""); }
  }
}
if (window.attachEvent && navigator.userAgent.indexOf("Opera")==-1) window.attachEvent("onload", jsHover);

function alerts()
{
alert('Выберите пункт в списке ниже');
}

function newwindows()
{
if(document.getElementById("newwin").checked) {//alert('пункт отмечен'); 
document.form_calc.target="_blank";}
else if(document.getElementById("newwin").checked==false) {//alert('пункт НЕ отмечен');
document.form_calc.target="frame1";}
}