		function showSignupPopup()
		{
			$("#popup").css("display", "block");
			$("#popupOver").css("display", "block");
			$("embed").css("visibility", "hidden");
			$("object").css("visibility", "hidden");
			$("#page select").css("visibility", "hidden");
			/*if ($.browser.msie) {
				if (document.getElementById("dFrame").childNodes.length == 1) {
					var frame = document.createElement("iframe");
					frame.src = "https://fitspace.co.uk/join-us_new.aspx";
					frame.width = 590;
					frame.height = 400;
					document.getElementById("dFrame").appendChild(frame);
				}
			}
			else {
				// firefox has always one node of type #text
				if (document.getElementById("dFrame").childNodes.length == 1) {
					var frame = document.createElement("object");
					frame.data = "https://fitspace.co.uk/join-us_new.aspx";
					frame.type = "text/html";
					frame.style.width = "590px";
					frame.style.height = "400px";
					frame.style.border = "1px solid #000000";
					document.getElementById("dFrame").appendChild(frame);
				}
			}*/
		}
		
		function hideSignupPopup() 	{
			$("embed").css("visibility", "visible");
			$("object").css("visibility", "visible");
			$("#page select").css("visibility", "visible");
			$("#popup").css("display", "none");
			$("#popupOver").css("display", "none");
		}		