    function startList1() 
     {
       var nodes = document.getElementById("nav1").getElementsByTagName("LI");
       for (var i=0; i<nodes.length; i++) 
       {
         nodes[i].onmouseover = function() 
         {
           this.className += " over";
         }
         nodes[i].onmouseout = function() 
         {
           this.className = this.className.replace(new RegExp(" over\\b"), "");
         }
       }
     }


function wopen(wurl,wname,h,w)
{
window.open(wurl,wname,'height='+h+',width='+w+',resizable=no,scrollbars=no,menubar=no,status=no').focus();
}
     


