function loadpopup(url, height)
	{
	if (! height)
		{
		var height = 455;
		}
	
	element = $("#eventPopup");
	
	element.load(url);
	
	element.css({
		left: ($(window).width() - element.width()) / 2, 
		top: $(window).scrollTop() + 50,
		height: height
		});

	//element.show(350);
	element.show();

	$(window).bind('scroll', scrollpopup);
	}


function hidepopup()
	{
	// $("#eventPopup").hide(350);
	$("#eventPopup").hide();

	$(window).unbind('scroll', scrollpopup);
	}


function scrollpopup()
	{
	// $("#eventPopup").animate({top:$(window).scrollTop() + 50 + "px" }, {queue: false, duration: 350});
	$("#eventPopup").animate({top:$(window).scrollTop() + 50 + "px" }, {queue: false, duration: 100});
	}

