<!-- Hide code from non-js browsers
	function openPictureWindow(imageURL,autor,imageTitle) {
	newWindow = window.open("","newWindow","left=100 ,top=30 ,width=650 ,height=650");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+autor+'</title>');
	newWindow.document.write('<style type="text/css" class="style2">');
	newWindow.document.write('body{	background-color:#a8a9ad;font-family:Times New Roman; color: #FFFFFF; 	font-size:14px; font-weight: bold}');
	newWindow.document.write('</style></head>');
	newWindow.document.write('<body >'); 
	newWindow.document.write('<table width=650 height=650 ><tr><td align=center valign=middle>');	
	newWindow.document.write('<img src='+imageURL+' >');	
	//newWindow.document.write('<br><br>'+imageTitle);
	newWindow.document.write('</td></tr></table>');  
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
// end hiding -->