function popup(src,w,h,title){
	var sh = screen.height;
	var sw = screen.width;
	var t = (sh - h)/2;
	var l = (sw - w)/2;
	var ww = w+20;
	var wh = h+4;
	//alert("Y: " + sh + "\nG: " + sw);
	nw = window.open("","urunler","width="+ww+",height="+wh+",left="+l+",top="+t+",directories=no,location=no,menubar=no,resizable=no,scrollbars=1,status=no,toolbar=no'");
	nw.document.writeln("<html>");
	nw.document.writeln("<head>");
	nw.document.writeln("<title>"+title+"</title>");
	nw.document.writeln("</head>");
	nw.document.writeln("<body topmargin='0' leftmargin='0' bottommargin='0' rightmargin='0' bgcolor='#ffffff'>");
	/*nw.document.writeln("<a href='javascript:window.close()\;'><img src='images/"+img+"' width='"+w+"' height='"+h+"' border='0' alt='Kapatmak için resme tıklayın!'></a>");*/
	nw.document.writeln("<img src='"+src+"' width='"+w+"' height='"+h+"' border='0''>");
	nw.document.writeln("</body>");
	nw.document.writeln("</html>");
	nw.document.close();
}