
var nomer1   = Math.round( Math.random()*(100));
var nomer2   = nomer1+1;

function nw(pic_name)
{

	picturewindow=window.open("","","left=0, top=0, scrollbars=1,resizable=1,status=0,height=900,width=1000")
       
	picturewindow.document.open()	
	picturewindow.document.write('<head><title>picture</title></head><body bgcolor="#CADCDE">');
	picturewindow.document.write('<center><br><br><br><table bgcolor="#AAC4C9" style="BORDER: #ffffff 0px solid"><tr><td width="100%"><p><img border="1" src='+pic_name+' hspace="20" vspace="20"></p></td></tr></table>');
	
	picturewindow.document.write('</center></body>');
	picturewindow.document.close()


}  

