function ClickShow(e) { if (IE4) x=event.srcElement; else x=e.target; if (typeof x.nodeName =='string') { if (x.nodeName =='IMG') { l=x.src; if (l.indexOf("T.jpg")>0) { l=l.split("T.jpg"); l=l[0] + ".jpg"; w=window.open(l,"LargeView","scrollbars=yes,resizable=yes,toolbar=no,menubar=no,location=no,directories=no,status=no,alwaysRaised=yes,dependent=yes"); w.focus(); } } } } function interrogate(what) { var output = ''; for (var i in what) alert(i + ' ' + (what)[i] + ', '); } IE4 = (document.all && (navigator.userAgent.indexOf("MSIE")>-1)) ? true : false; document.body.onclick=ClickShow;