function openLogin()
		// Function that will swap the display/no display for
		// all content within span tags
		{
			elem = document.getElementById("login_form");
		if (elem.style.display == "none")
			{
			elem.style.display = "block";
			}
		else
			{
			elem.style.display = "none";
			$('#loginTop').find('.error').remove();
			}
		}

