
	function popup_start() {
		//alert('asd');
		//alert();
		//var maxwidth = document.width;
		var leftmargin = $(document).width();
		//800px szeles a kep, ezert -800, a maradekot pedig osztjuk 2-vel es igy kerul pont kozepre a cucc
		leftmargin = (leftmargin - 472) / 2;
		$("body").append('<div style="position:fixed;width:100%;height:100%;top:0px;left:0px;border:0px solid red;background-color:#000000;opacity:0.4;filter:alpha(opacity=40);z-index:999;" id="ic_popup_container"></div>');
		$("body").append('<div style="position:fixed;width:472px;top:100px;left:' + leftmargin + 'px;border:0px solid red;z-index:1000;" id="ic_popup"><a href="javascript:popup_close();" style="color:#ffffff;"><img src="static/popup/tappancs_web.jpg" alt="" title="" /></a></div>');

		/*
		$.ajax({
		  url: "extra/popup/popup.php",
		  cache: false,
		  success: function(html){
		    $("#szeplast_popup").append(html);
		  }
		});
		*/

	}
	
	function popup_close()
		{
	    $("#ic_popup").remove();
	    $("#ic_popup_container").remove();
		}

