// JavaScript Document

function showImage(id, root) {
  var Properties = "toolbar=no,location=no,directories=no,status=no,hotkeys=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width=810,height=610"
  URL="/"+root+"showimage.php?id="+id;
  window.open(URL,"image",Properties);
}

function showTerms(root, lang) {
  var Properties = "toolbar=no,location=no,directories=no,status=no,hotkeys=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=750,height=500"
  URL= root+"terms/"+lang+".html";
  window.open(URL,"terms",Properties);
}
