function NewWindow(imageName, scroll) {
	w=640; h=480; 
	pos="center";
	myname='img';
	if (pos=="center") 
              {
	    LeftPosition=(screen.width)?(screen.width-w)/2:100;
		TopPosition=(screen.height)?(screen.height-h)/2:100;
              } else if ((pos!="center" && pos!="random") || pos==null) 
                        {
	                   LeftPosition=0;
		           TopPosition=20;
	                }
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no, status=no,menubar=no, toolbar=no,resizable=no';
      
win=window.open(imageName, myname, settings);
win.document.write('<body leftmargin="0" topmargin="0" rightmargin="0" bottommargin="0 marginwidth="0" marginheight="0" onLoad="if (window.focus) window.focus()"><center>');
	
	   win.document.write('<img src="'+imageName+'" width="' +w+ '" height="' +h+ '"alt="">');
	   win.document.write('</center></body>');	
           win.document.close();
}
