

          b_print_ovr=new Image(94,15); b_print_ovr.src="/images/buttons/print_ovr.gif";
          b_print_out=new Image(94,15); b_print_out.src="/images/buttons/print.gif";
          b_fav_ovr=new Image(94,15); b_fav_ovr.src="/images/buttons/fav_ovr.gif";
          b_fav_out=new Image(94,15); b_fav_out.src="/images/buttons/fav.gif";
          b_logo_ovr=new Image(59,59); b_logo_ovr.src="/images/logo_ovr.gif";
          b_logo_out=new Image(59,59); b_logo_out.src="/images/logo.gif";

          function Movr(imageName){
          if(document.images){
               document[imageName].src=eval(imageName + "_ovr.src");
          }}
          function Mout(imageName){
           if(document.images){
               document[imageName].src=eval(imageName+"_out.src");
          }}

          function mark_page(targetId)
          {

           var targetElement;
               targetElement = document.getElementById("p_"+targetId);


           targetElement.style.background = "#ca0064";
           targetElement.style.color = "#FFFFFF";

          }

          function unmark_page(targetId)
          {
           var targetElement;
               targetElement = document.getElementById("p_"+targetId);
          // alert(targetElement.style.background.color);
           targetElement.style.background = "#f5f5f5";
           targetElement.style.color = "#323232";
          }

