function displayImage(imageName, imageAlt) {
    poofWindow = window.open("","poofWindow","width=640,height=480,scrolling=auto,resizable=no");
	poofWindow.document.open();
	poofWindow.document.write('<html><title>Brett Insurance Group /// '+imageAlt+' ///</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()" onClick="self.close()">');
	poofWindow.document.write('<table width="640" border="0" cellspacing="0" cellpadding="0" align="center" height="480"><tr><td>'); 
	poofWindow.document.write('<img src="'+imageName+'" width="640" height="480" alt="Click screen to close">'); 
	poofWindow.document.write('</td></tr></table></body></html>'); 
	poofWindow.document.close();
    poofWindow.focus();
}