function jspopup(id,url) {
	popup_code='<div class="js_popup"><div class="js_popup_bg"></div><div class="js_popup_content"><iframe scrolling="no" class="'+id+'" id="'+id+'" name="'+id+'" src="'+url+'"></iframe><div class="js_popup_close" style="width: 70px; height: 18px; color: white;text-align: center; cursor:pointer;">Bezár</div></div></div>';
	$('body').append(popup_code);
	$('.js_popup').width($(window).width());
	$('.js_popup').height($(window).height());

	x = ($('.js_popup').width() / 2 ) - ( $('.js_popup_content').width() / 2 );
	y = ($('.js_popup').height() / 2 ) - ( $('.js_popup_content').height() / 2 );
//	alert("x: "+x+" , y: "+y);
	pos = "top: "+y+"px; left: "+x+"px;"
	$('.js_popup_content').attr('style', pos);
	
//	$('body').attr('scroll','no');
//	$('body').addClass('js_noscroll');
	$('.js_popup_close').bind('click', function() {
		$('.js_popup').remove();
	});
}
