  var xmlDoc = null ;
  
      function w2load(w2page) {
        if (typeof window.ActiveXObject != 'undefined' ) {
          xmlDoc = new ActiveXObject("Microsoft.XMLHTTP");
          xmlDoc.onreadystatechange = w2process ;
        }
        else {
          xmlDoc = new XMLHttpRequest();
          xmlDoc.onload = w2process ;
        }
        xmlDoc.open( "GET", w2page, true );
        xmlDoc.send( null );
      }
  
      function w2process() {
        if ( xmlDoc.readyState != 4 ) return ;
        document.getElementById("photo").innerHTML = xmlDoc.responseText ;
      }
  
      function w2empty() {
        document.getElementById("photo").value = '' ;
      }
