// *************************************************************
function doFull(fname,picHeight,picWidth) {
  var newWin; 

  newWin = window.open("","","Height="+(picHeight+16)+",Width="+(picWidth+8)+",screenX=2,screenY=2,scrollbars=yes,resizable=yes");   
  newWin.document.write("<HTML><HEAD><TITLE>Full View</TITLE></HEAD>");
  newWin.document.write("<BODY bgcolor='#000000'>");
  newWin.document.write("<img src='"+fname+"' border='0'>");
  newWin.document.write("</BODY></HTML>");
  newWin.document.close;
}

