	function LoadPopup(url, width, height)
	{
		$.ajax({
			type: "GET",
			url: url,
			width: width, 
			height: height, 
			
			success: function(html){
				$("#overlayPopupContent").append(html);
				var windowWidth = document.documentElement.clientWidth;
				var windowHeight = document.documentElement.clientHeight;
				var popupHeight = height;  
				var popupWidth = width;
				$("#overlayPopup").css({  
					"width": width,
					"height": height, 
					"top": "40",  
					"left": windowWidth/2-popupWidth/2
				});
				
				if (navigator.appName == "Microsoft Internet Explorer")
				{
					$("#overlayPopup").css({  
						"margin-left": "50%"
					});
				}
				
				$("#darkBackground").css({
					"opacity": "0.7"
				});
				
				$("#darkBackground").fadeIn("slow");
				$("#overlayPopup").fadeIn("slow");
			}
		});
	}

	function DestroyPopup()
	{
		$("#darkBackground").fadeOut("slow");
		$("#overlayPopup").fadeOut("slow", function()
			{
				$("#overlayPopupContent").html("");
			}
		);
	}	
	
	function ClosePopup()
	{
		$("#darkBackground").fadeOut("slow");
		$("#overlayPopup").fadeOut("slow", function()
			{
				$("#overlayPopupContent").html("");
			}
		);
		location.reload(true);
	}	

