function openPictureWindow(imageURL,autor,imageTitle) {
	newWindow = window.open("","newWindow","left=100 ,top=30 ,width=660 ,height=660");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>'+autor+'</title></head>');
	newWindow.document.write('<body style=\'background-color:#a8a9ad; font-family:Tahoma; color:#FFFFFF; margin:0px; font-size:14px; font-weight:bold\'><center>'); 
	newWindow.document.write('<table width=100% height=100% ><tr><td align=center valign=middle width=100% height=100%>');	
	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();
}