function test()
{
	// First check the passwords are the same.
return true;
	
	if(document.getElementById("screename").value=='')
	{
		alert("You must specify screen name");
		return false;
	}


	var pw1 = document.getElementById("pw1").value;
	var pw2 = document.getElementById("pw2").value;

	if(pw1=='')
	{
		alert("You must specify a password");
		return false;
	}
	
	if(pw1!=pw2)
	{
		alert("Both passwords must match");
		return false;
	}



	var e1 = document.getElementById("email1").value;
	var e2 = document.getElementById("email2").value;
	if(e1=='')
	{
		alert("You must specify an email address");
		return false;
	}
	
	if(e1!=e2)
	{
		alert("Both email addresses must match");
		return false;
	}


	if(document.getElementById("city").value=='')
	{
		alert("You must specify a city");
		return false;
	}


	if(document.getElementById("zip").value=='')
	{
		alert("You must specify your zip code");
		return false;
	}


	if(document.getElementById("img").value=='')
	{
		alert("You must enter the characters in the image");
		return false;
	}

	if(!document.getElementById("agree").checked)
	{
		alert("You must agree to the terms and conditions");
		return false;
	}

	return true;
}
