      aa = new Image();
      aa.src = "images/b_corner2.gif";
      aab = new Image();
      aab.src = "images/b_corner3.gif";

function over(w){

 if (document.getElementById && w) {
   eval("document.getElementById('a" + w + "').src = aab.src");
   eval("document.getElementById('c" + w + "').style.backgroundColor = '#468d85'");
   eval("document.getElementById('d" + w + "').style.backgroundColor = '#468d85'");
 }

}


function out(w){

 if (w==MenuActive) return;

 if (document.getElementById && w) {
   eval("document.getElementById('a" + w + "').src = aa.src");
   eval("document.getElementById('c" + w + "').style.backgroundColor = '#5a9f99'");
   eval("document.getElementById('d" + w + "').style.backgroundColor = '#5a9f99'");
 }

}


function getloc(href){
 document.location=href;
}