function read(url,total) {
	var pic=new Array();
 
	for(i=1;i<=total;i++) 
	{ 
	   pic[i] = new Image();
	   if(i<10)
		  pic[i].src = url+'0'+i+'.jpg';
	   else
	   	  pic[i].src = url+i+'.jpg';   
	}  
	ViewWin=window.open("","WIN","width=700,height=700,menubar=no,resizable=yes,scrollbars=yes");
	ViewWin.document.open();
	ViewWin.document.write("<HTML><HEAD><TITLE>Guarantee</TITLE></HEAD><BODY  style='background:#000;'><CENTER>");	 
	ViewWin.document.write("<input type='button' onclick='self.close();' name='btnClose' value='Close this Window' /><br /><br />");
	for(i=1;i<=total;i++) 
	{ 
		ViewWin.document.write("<IMG SRC=" + pic[i].src + " BORDER=0><br />");
	}
	ViewWin.document.write("<br /><input type='button' onclick='self.close();' name='btnClose' value='Close this Window' />");
	ViewWin.document.write("</CENTER></BODY></HTML>");
	ViewWin.document.close();
 }