function zoom(ne)
{
	var width=500;
	var height=500;
	var left=(screen.width-width)/2;
	var top=(screen.height-height)/2;
	var features="width="+width+",height="+height+",left="+left+",top="+top+",scrollbars=1";
	var url=ne.src;
	url="images"+url.substr(url.lastIndexOf("/"));	
	zoomwin=window.open("","zoomwin",features);
	zoomwin.document.write("<html><head><title>Ultra Moderno - Ürünler</title>");
	zoomwin.document.write("<script language='javascript'>");
	zoomwin.document.write("function winload(){");
	zoomwin.document.write("window.resizeTo(document.getElementById('im').width + 25,document.getElementById('im').height + 30);");
	zoomwin.document.write("window.moveTo((screen.width-document.getElementById('im').width)/2,(screen.height-document.getElementById('im').height)/2 - 10);");
	zoomwin.document.write("}");	
	zoomwin.document.write("</script>");
	zoomwin.document.write("</head><body onload='winload()' style='margin:0px;'><table border='0' cellpadding='0' cellspacing='0' width='100%' height='%100'><tr><td align='center' valign='middle'>");
	zoomwin.document.write("<img id='im' src='"+url+"' onClick='self.close()' alt='Pencereyi kapatmak için tiklayin...' style='cursor:hand;'>");
	zoomwin.document.write("</td></tr></table></body></html>");
	zoomwin.document.close();
	zoomwin.focus();
} 

