if (document.images) 
{



function pictures(name, title, caption,size,info)
{
picname="";
picname=name+".JPG";
newwindow=window.open('','pictures','width=500','height=500');
newwindow.document.write("<html><head><title>"+title+"</title></head><body bgcolor=#000000><Center><img src="+picname+">");
newwindow.document.write("<BR><font size=-1 color=#C4782B > &#169; 2005 Rowshan Dowlatabadi<P>" + caption );
newwindow.document.write("<BR>"+ size );
newwindow.document.write("<BR>"+ info +"</font>");

newwindow.document.write("</CENTER></body></html>");
newwindow.focus();
newwindow.document.close();
}}