//POPUP WINDOW------

var photo1;
var win;
var caption1;

function homepopup(photo1,caption1,wid,hei)
{

wid=Number(wid)+Number(16);
hei=Number(hei)+Number(0);

win = window.open('blank.html','enlarged1','status=yes,toolbar=no,menubar=no,scrollbars=yes,resizable=no,height='+ hei+',width='+ wid+',left=30,top=60');
win.document.write('<html><head>');
win.document.write('<title>'  + caption1 + '</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="'+photo1+'" alt="'  + caption1 + '"></td>');
win.document.write('        </tr>');
win.document.write('      </table>');
win.document.write('</body></html>');
win.document.close();
}