//resimine göre popup açtırıyoruz
function openPictureWindow(imageName,alt) {
	newWindow = window.open("","newWindow","width=80,height=80");
	newWindow.document.open();
	newWindow.document.write('<html><head><title>TANYILDIZLAR</title><script language="javascript">function boyutlandir(alfa){genislik=eval(alfa.offsetWidth)+40;yukseklik=eval(alfa.offsetHeight)+100;window.resizeTo(genislik,yukseklik)');
	newWindow.document.write('}</script></head><body bgcolor=#FFFFFF  onload="boyutlandir(resim)">');
	newWindow.document.write('<table width=100% align=center><tr><td><img src='+imageName+' id=resim onload="boyutlandir(resim)" alt=""></td></tr><tr><td align=right height=35><a href=javascript:close() style="font-family:verdana;font-size:10px;color:#000000">Pencereyi Kapat</a></td></tr></table><script language="javascript">boyutlandir(resim);</script>');
	newWindow.document.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}
//resimine göre popup açtırıyoruz sonu