function goImgWin(myImage,myWidth,myHeight,origLeft,origTop) {
	myHeight += 20;
	myWidth += 20;
	TheImgWin = window.open(myImage,'image','height=' + 
	myHeight + ',width=' + myWidth + ',toolbar=no,directories=no,status=no,' + 'menubar=no,scrollbars=no,resizable=yes');
	
	TheImgWin.resizeTo(myWidth+60,myHeight+100);
	TheImgWin.moveTo(origLeft,origTop);
	TheImgWin.document.write('<html><head><title></title>');
	TheImgWin.document.write('<link rel=stylesheet href="style/img.css" type="text/css"></head><body>');
	TheImgWin.document.write('<img src="'+myImage+'">');
	TheImgWin.document.write('<br/><br/><a href="#" onclick="javascript:self.close();">Close window</a>');
	TheImgWin.document.write('</body></html>');
	TheImgWin.focus();
	}