<!--


function mark() {
  strQuery = (window.location.search).substring(1, (window.location.search).indexOf("|"));
  while(strQuery.indexOf("%20")!=-1) {
     strQuery = strQuery.replace("%20", " ");
     strQuery = strQuery.replace("%20", " ");
  }
  if(browIE && strQuery!='') {
      if(strQuery.indexOf("'")!=-1) {
          strQuery = strQuery.substring(0,strQuery.indexOf("'"));
      }
      var count = 0;
      for(var i = 0; i < document.getElementsByTagName("area").length; i++) {
          if(document.getElementsByTagName("area")[i].title==strQuery){
              if(count<3) {
                  coords = document.getElementsByTagName("area")[i].coords;
                  a4Mark(document.getElementsByTagName("area")[i].shape, coords, false);
              }
              count++;
          }
      }
  }
}

function openPrintPage() {
  oldURL = window.location.href;
  oldURL=oldURL.substring(oldURL.lastIndexOf("/")+1);
oldURL=oldURL.substring(0, oldURL.lastIndexOf("."));
oldURL=oldURL.substring(0, oldURL.lastIndexOf("m"))+oldURL.substring(oldURL.lastIndexOf("m")+1);
newURL="print.html?" + oldURL +".jpg";
  if(browIE | browNS) {
    f1=window.open(newURL, 'print','menubar=yes, locationbar=yes, resizable=yes, scrollbars=yes, height='+(screen.availHeight-100)+', width=700');
  } else {
    f1=window.open(newURL, 'print');
    f1.location.reload();
  }
  f1.moveTo(screen.width/2-350, 0);
  f1.focus();
}
//-->
