// JavaScript Document
function popup(page) {
    var w=window.open(page,"pop1",'resizable=yes,menubar=no,scrollbars=yes,width=300px,height=300px');
    w.document.close();
    w.focus();
  }
function popupdiapo(page) {
    var w=window.open(page,"pop1",'resizable=yes,menubar=no,scrollbars=yes,width=1000px,height=800px');
    w.document.close();
    w.focus();
  }  
