function dsp(loc){
   if(document.getElementById){
      var foc=loc.firstChild;
      foc=loc.firstChild.innerHTML?
         loc.firstChild:
         loc.firstChild.nextSibling;
      foc=loc.parentNode.nextSibling.style?
         loc.parentNode.nextSibling:
         loc.parentNode.nextSibling.nextSibling;
      foc.style.display=foc.style.display=='block'?'none':'block';}
 }
 
 function OpenWindow( url, width, height, options, name )
 {
 if ( ! width ) width = 500;
 if ( ! height ) height = 400;
 if ( ! options ) options = "scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
 if ( ! name ) name = "outsideSiteWindow";

 var newWin = window.open( url, name, "width=" + width + ",height=" + height + "," + options );
 }
             