// JavaScript Document
function openPictWindow(thePict,h,w){
 var txt, win = window.open("","Pict",'scrollbars=no,resizable=no,width=' + h + ',height=' + w);
  txt = "<html>";
  txt = txt  + "<head>";
  txt = txt + "<Title>CHCS</Title>";
  txt = txt + "</head>";
  txt = txt + "<Body leftmargin=0 topmargin=0 onBlur=self.close();>";
  txt = txt + "<img src=" + thePict + ">";
  txt = txt + "</Body>";
  txt = txt + "</html>";
  win.document.write(txt);
  win.document.close();
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

