function OpenImage(imgurl){
	var url = "b-" + imgurl;
	
	var NewP = window.open("", "Image","toolbar=no, location=no, directories=no, WIDTH=420,HEIGHT=380");
	
	NewP.document.open();
	NewP.document.write("<html><head><title>Image</title></head>");
	NewP.document.write("<body>");
	NewP.document.write("<img src=");
	NewP.document.write(url);
	NewP.document.write(">");
	NewP.document.write("</body></html>");
}