function siraj1(x,w,h)
{
	w1= eval(w)+20;
	h1= eval(h)+45;
	abcd=window.open(x, "SrkWin", "status=no, resize=yes, toolbar=no, scrollbars=no, width="+w1+", height="+h1)
	abcd.moveTo(0,0);
	newDoc = abcd.document;
//	newDoc.writeln("Bismillah");
	newDoc.writeln("<html><head><title>XStream Software</title></head>");
	newDoc.writeln("<body leftmargin=\"0\" topmargin=\"0\">");
	newDoc.writeln("<table width=\"100%\" border=\"0\" cellspacing=\"4\" cellpadding=\"4\">");
	newDoc.writeln("  <tr> <td bgcolor=\"#CCCCCC\" align=\"right\"><a href=\"javascript:close();\"><font face='arial' size=1>Close</font></a></td> </tr>");
	newDoc.writeln("  <tr> <td align=\"center\" ><img src="+x+" width="+w+" height="+h+"></td>  </tr>");
	newDoc.writeln("</table>");
	newDoc.writeln("</body></html>");
}