language="JavaScript"
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}


function openWindow(imgUrl, imgAlt, imgWidth, imgHeight, winTitle)
{
    w = window.open( '', winTitle, 'width='+imgWidth+',height='+imgHeight);
    d = w.document;
    d.write("<head>\n<title>" + winTitle + "</title>\n</head>\n<body class='bod' topmargin='0' leftmargin='0'>\n");
    d.write("<div align='center'>\n<a href='javascript:top.close()'>");
    d.write("<img src='" + imgUrl + "' width='" + imgWidth + "' height='" + imgHeight + "' border='1'></a>");
    d.write("</div>\n</body>\n</html>");

}
//-->
