    <!--
      function getGal(img_id,gal_div) {
      	gal_div2=gal_div;
      		var url7 = "gallery/gal_new.php?img_id=" + img_id;
        if (window.XMLHttpRequest) {
          xml7 = new XMLHttpRequest();
        } else if (window.ActiveXObject) {
          xml7 = new ActiveXObject("Microsoft.XMLHTTP");
        } else {
          alert("Your browser lacks the needed ability to use Ajax");
          return false;   
        }
        /*document.getElementById(gal_div).innerHTML = '&nbsp;';
        document.getElementById("working").innerHTML = '<img src="./pic/load_image.gif" />';*/
        xml7.onreadystatechange = processPage7;
        xml7.open("GET", url7, true);
        xml7.send("");
        /*setTimeout('getPage('msg_box,div_box')', 5*2000);*/
     }
      function processPage7() {
        if (xml7.readyState == 4) {
          if (xml7.status == 200) {
          	/*document.getElementById("working").innerHTML = '&nbsp;';*/
            document.getElementById(gal_div2).innerHTML = xml7.responseText;
          } else {
            alert("There was a problem retrieving the XML data:\n" + xml7.statusText);
          }
        }
      }
    //--> 
    <!-- 
           function showGal(note_id,note_left,note_top){
                        note=document.all(note_id);
                        note.style.left=note_left;
                        note.style.top=note_top;
                        note.style.visibility='visible';
            }

            function hideGal(note_id){ 
                        note=document.all(note_id);
                        note.style.visibility='hidden';
            }
//--> 