function openPictureWindow(imageName,alt) {
	var winLeft = (screen.width - 250) / 2;
	var winUp = (screen.height - 250) / 2;
	newWindow = window.open("","newWindow",'width=250,height=250,left='+winLeft+',top='+winUp+'');
	newWindow.document.open();
	newWindow.document.write('<html><head><title>Vatan Plastik</title><scr'+'ipt language="javascr'+'ipt">function boyutlandir(imaj){genislik=eval(imaj.offsetWidth)+8;yukseklik=eval(imaj.offsetHeight)+30;window.resizeTo(genislik,yukseklik);yenix=(screen.availWidth-genislik)/2;yeniy=(screen.availHeight-yukseklik)/2;');
	newWindow.document.write('window.moveTo(yenix,yeniy);}</scr'+'ipt></head><body bgcolor=#FFFFFF background=img/loading.gif leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 onload="window.setTimeout(\'self.close\',20000)" onresize="boyutlandir(resim)" onload="boyutlandir(resim)">');
	newWindow.document.write('<a href=javascript:window.close()><img src='+imageName+' id=resim onLoad="boyutlandir(resim)" alt="Kapatmak için tıklayın" border=0></a><scr'+'ipt language="javascr'+'ipt">boyutlandir(resim);</scr'+'ipt>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}