function picpop(picurl,_wid,_hei) 
	{
	var _widw = _wid;
	var _heiw = _hei;	
	if (screen.width<=_wid){
		_widw = screen.width-50;
		_heiw = _hei + 50;
		}
	if (screen.height<=_hei){
		_widw = _wid + 50;
		_heiw = screen.height-150;
		}
	picp = window.open("","hejhow","height=" + (_heiw+40) + ",width=" + (_widw+40) + ",left=" + ((screen.width - _widw)/2) + ",top=" + ((screen.height - _heiw)/2 - 20) + "");
	content = '<HTML>';
	content += '<TITLE>EROTIKUSFOTO.hu</TITLE>';
	content += '</HEAD>';
	content += '<BODY BGCOLOR="#FFFFFF" LEFTMARGIN=20 TOPMARGIN=20 ONBLUR="self.close()">';
	content += '<DIV ALIGN="CENTER">';
	content += '<table onClick="window.close" width=' + _wid + ' height=' + _hei + ' border="0" cellpadding="0" cellspacing="0">';
	content += '<tr><td onMouseUp="javascript:window.close()" style="cursor: hand; cursor: pointer;" background="' + picurl + '"></td></tr></table>';
	content += '</DIV></BODY></HTML>';
	picp.document.write(content);
	picp.document.close();
}