function showImage(caption, url){
	var win = window.open("ImageViewer.htm", "ImagePreview", "width=700,height=550,scrollbars=yes,address=no,location=no,menubar=no,status=no,toolbar=no,resizable=yes"); 
	win.document.close();win.document.open();
	win.document.writeln("<html><head><title>Buckeye Bleacher Repair - " + caption + "</title></head><body>");
	win.document.writeln("<center><span style=\"cursor:pointer;color:#0000FF;font-family: Verdana, Arial, Helvetica, sans-serif;\" onClick=\"window.close();return false;\"><img src=\"" + url + "\" alt=\"" + caption + "\" border=\"0\"/>");
	win.document.writeln("<br/>Click here to close this window</span></center></body></html>");
	}