// JavaScript Document
//
function PopUp(url,w,h) {
  doit = open( url + ".htm","JewelintheCrown","resizable=no,scrollbars=no,top=20,left=20,width=" + w + ",height=" + h);
}
function clearWindow() {
  if (doit != null && doit.open) doit.close();
}
//