<!--
function goImgWin(myImage,winNme,myWidth,myHeight,origLeft,origTop,capt) {
var mh = myHeight + 130;
var mw = myWidth + 26;
TheImgWin = window.open('',winNme,'height=' + mh + ',width=' + mw + ',toolbar=no,directories=no,status=no,' + 'menubar=no,scrollbars=no,resizable=no');
TheImgWin.resizeTo(mw+2,mh+50);
TheImgWin.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http:\/\/www.w3.org\/1999\/xhtml">');
TheImgWin.document.write('<head><title>Artwork<\/title><link href="../iahStyle.css" rel="stylesheet" type="text\/css"><\/head>');
TheImgWin.document.write('<body style="overflow:hidden">');
TheImgWin.document.write('<table border="0" cellpadding="10" cellspacing="0" align="center" bgcolor="#ffffff"><tr><td align="center" bgcolor="#ffffff" class="txt11">');
TheImgWin.document.write('<img src="'+myImage+'" width="'+myWidth+'" height="'+myHeight+'" ');
TheImgWin.document.write('border="0" alt="'+capt+'"\/>');
TheImgWin.document.write('<p>'+capt+'<\/p><\/td><\/tr>');
TheImgWin.document.write('<tr><td align="center" class="txt9"><a href="javascript:window.close();">Close Window <\/a><\/td><\/tr><\/table>');
TheImgWin.document.write('<\/body><\/html>');
//TheImgWin.moveTo(origLeft,origTop);
TheImgWin.focus();
}
//-->