function petycja() {
	var html = '\
		<div id="overlay" style="position:fixed; top:0; left:0; width:100%; height:100%; background:#000;"></div>\
		<div id="popup" style="position:absolute; top:50px; left: 50%; margin-left: -287px;">\
			<iframe src="http://petycja.otop.org.pl/" width="575" height="817" frameborder="0" marginheight="0" marginwidth="0"></iframe>\
			<a href="#" class="close" style="width:33px; height:33px; position:absolute; top:13px; right:11px; background:url(http://petycja.otop.org.pl/img/close.gif)"></a>\
		</div>\
	'
	
	var close = function () {
		$("#popup").remove()
		$("#overlay").fadeOut("fast", function () { $(this).remove() })
		return false
	}
	
	$(html).appendTo("body")
	$('#overlay').css({ opacity: 0.6 }).click(close)
	$("#popup a.close").click(close)
}


