function openImgWin(theURL,winName,features) { //v2.0

w = window.open("",winName,features);
w.document.open();
w.document.write('<html><head>');
w.document.write('<title>' + winName + '</title>');
w.document.write('</head>');
w.document.write('<body bgcolor="#524D42"leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onBlur="focus()">'); 
w.document.write('<table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000"><tr><td><div align="center"><img src="' + theURL + '"></div></td></tr></table>');
w.document.write('<div align="center"><a href="javascript:window.close();"><img src="img/titel/close.gif" width="125" height="30"  vspace="10" border="0" > </a></div>');
w.document.write('<div align="center"><img src="img/titel/pop_logo.gif" width="275" height="24" ></div>');
w.document.write('<div align="center"><img src="img/titel/copyright.gif" width="275" height="20" ></div>');

w.document.write('</body></html>');
w.document.close(); 

}
