 function DoIt(objname) {
  for (j=1;j<document.all.length; j++) {
     if ( ((j)<document.all.length)  && (document.all(j).tagName == "DIV")) {
       if (document.all(j).className == objname) {
          targetElement = document.all(j);
          if (targetElement.style.display == "none") { targetElement.style.display = ""; }
          else { targetElement.style.display = "none"; }
       } 
     }
  }
  window.event.cancelBubble = true;
  window.event.returnValue=false;
 }

 function focuswindow() { window.focus(); }
