function picView(u, w, h, t)
{
	if (!t) t = "BB Ingatlan";
	var x = (screen.availWidth-w)/2;
	var y = (screen.availHeight-h)/2;
	picwin = window.open("","picwin","width="+w+",height="+h+",left="+x+",top="+y);
	picwin.document.open();
	picwin.document.writeln('<html><title>'+t+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');
	picwin.document.writeln('<table width="100%" height="100%"cellpadding="0" cellspacing="0" border="0">');
	picwin.document.writeln('	<tr>');
	picwin.document.writeln('		<td>');
	picwin.document.writeln('			<img src="'+u+'" width="'+w+'" height="'+h+'">');
	picwin.document.writeln('		</td>');
	picwin.document.writeln('	</tr>');
	picwin.document.writeln('</table>');
	picwin.document.writeln('</body></html>');
	picwin.document.close();
	picwin.focus();
}
