//POPUP WINDOW------

var photo;
var win;
var caption;

function launch(photo,caption,wid,hei)
{

wid=Number(wid)+Number(16);
hei=Number(hei)+Number(0);

win = window.open('blank1.html','enlarged','status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=no,height='+ hei+',width='+ wid+',left=30,top=75');
win.document.write('<html><head>');
win.document.write('<title>'  + caption + '</title>');
win.document.write('</head>');
win.document.write('<body topmargin="0" leftmargin="0" >');
win.document.write('      <table border="0" cellpadding="0" cellspacing="0" width="100%"  height="100%">');
win.document.write('        <tr>');
win.document.write('          <td>');
win.document.write('            <img border="0" name="photo1" src="'+photo+'" alt="'  + caption + '"></td>');
win.document.write('        </tr>');
win.document.write('      </table>');
win.document.write('</body></html>');
win.document.close();
}