  openthewindow = 0
  function OpenWindow(myurl) {
  OpenSizedWindow(myurl,"300","500");
  return false;
  }
  
  function OpenSizedWindow(myurl,boxheight,boxwidth) {
    longurl = myurl;
	stuff = "height=" + boxheight + ",width=" + boxwidth + ",resizable,toolbar,scrollbars,left=0,screenX=0,top=0,screenY=0";
    if (openthewindow && openthewindow.open && !openthewindow.closed) openthewindow.close();
    openthewindow = window.open(longurl, "openthewindow", stuff);
	return false;
  }

  function closeDep() {
    if (openthewindow && openthewindow.open && !openthewindow.closed) openthewindow.close();
  }
  
  function printpage() {
  window.print()
  }