 // Window-pop script// In the a tag, insert the following inline code: <a href="javascript: writeConsole('path_to_photo',pixel_width,pixel_height,'page_title','insert_text')"></a> function writeConsole(content,w,h,title,text) { windowProps="'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+"'";window_name=''; top.consoleRef=window.open('',window_name,windowProps);  consoleContent=''+'<html><head><TITLE>'+title+'</TITLE>'+'<style type="text/css">'+'<!--'+'.close {text-decoration: none;}'+'-->'+'</style>'+'</head>'+'<BODY BGCOLOR="#EDEBD4" link="#990033" vlink="#000000" onload="self.focus();">'+'<CENTER>'+'<table border="0" width="100%">'+'  <tr>'+'    <td width="100%" align="center">'+'  <br><img src="'+content+'">'+'  <p align="center" style="font-family: sans-serif; font-size: 8pt">'+text+'</p>'+'  <p align="center" style="font-family: sans-serif; font-size: 8pt"><a href="javascript:void window.close()" class="close">close window</a></p>'+'  </td>'+'  </tr>'+'</table>'+'</body>'+'</html>'  top.consoleRef.document.writeln(consoleContent) top.consoleRef.document.close()}