function adv_show(pct,w,h) {
  str='width='+w+'\,height='+h;
  Win= open("", "displayWindow", str);
  Win.document.open();
  Win.document.writeln("<html><head>");
  Win.document.writeln("<title>",pct,"</title>");
  Win.document.writeln("</head><body bgcolor=black leftMargin=0 topMargin=0 MARGINHEIGHT=0 MARGINWIDTH=0 onload='boom(5)'>");  
  Win.document.write("<table  cellSpacing=0 cellPadding=0  border=0 width=100% height=100% valign=middle><tr><td align=center>");
  Win.document.write("<img src='files/",pct,"'>");
  Win.document.write("</td></tr></table>");
  Win.document.writeln("</body></html>");
  Win.document.close();  
}


