
function imagePopup(url, title, alt, width, height)
{
        window.golarge = window.open("","","status=no,location=no,scrollbars=no,toolbar=no,menubar=no,screenX=30,screenY=30,left=30,top=30,height=" + (height+170) + ",width=" + (width+40));
        window.golarge.document.open();
        
    window.golarge.document.writeln('<html>');
    window.golarge.document.writeln('<head>');
    window.golarge.document.writeln('<title>' + title + '</title>');
    window.golarge.document.writeln('<link href="/styles/master.css" rel="stylesheet" type="text/css">');
    window.golarge.document.writeln('</head>');
    window.golarge.document.writeln('<body style="background-color: #FFFFFF">');
    window.golarge.document.writeln('<table style="width:100%; background-color:#FFFFFF; border-width:0px; text-align:center;" cellpadding="4" cellspacing="0">');
    window.golarge.document.writeln('<tr><td style="text-align:center;"><a href="javascript:window.close();"><img src="/images/button_closewindow.gif" alt="Close Window" width="143" height="26"/></a></td></tr>');
    window.golarge.document.writeln('<tr><td style="text-align:center;"><img src="' + url + '" alt="' + alt + '"/></td></tr>');

    window.golarge.document.writeln('<tr><td style="text-align:center;">');
    window.golarge.document.writeln('<table style="width:60%; border-width:0px; text-align:center; margin-left:auto; margin-right:auto;" cellspacing="0" cellpadding="4"><tr>');
    window.golarge.document.writeln('<td><p>' + title + '</p></td>');
    window.golarge.document.writeln('</tr></table>');
    window.golarge.document.writeln('</td></tr>');

    window.golarge.document.writeln('</table>');
    window.golarge.document.writeln('</body>');
    window.golarge.document.writeln('</html>');

    window.golarge.document.close();
}
