
function imagePopup(url, title, alt)
{
    if(typeof(url)!="object")
    {
        window.golarge = window.open("","","scrollbars=no,toolbar=no,menubar=no,screenX=30,screenY=30,left=30,top=30,height=400,width=420");
        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/content1.css" rel="stylesheet" type="text/css">');
window.golarge.document.writeln('<link href="/styles/master.css" rel="stylesheet" type="text/css">');
window.golarge.document.writeln('<link href="/styles/navsub.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 width="100%" border="0" align="center" cellpadding="4" cellspacing="0" bgcolor="#FFFFFF">');
window.golarge.document.writeln('<tr><td align="center"><a href="javascript:window.close();"><img src="/images/button_closewindow.gif" alt="Close Window" width="143" height="26" vspace="10" border="0"></a></td></tr>');
window.golarge.document.writeln('<tr><td align="center"><img border="0" src="'+ url +'" onLoad="opener.imagePopup(this);" alt="'+ alt +'"></td></tr>');

window.golarge.document.writeln('<tr><td align="center">');
window.golarge.document.writeln('<table width="60%" border="0" cellspacing="0" cellpadding="4"><tr>');
window.golarge.document.writeln('<td align="center"><p><span class="Head2">'+ title +'</span><br></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();
    }
    else{
        if(document.layers)
            window.golarge.resizeTo(url.width,url.height);
        else
            window.golarge.resizeTo(url.width+60,url.height+140);
    }
}