function BetterAds()
{
	document.title = "Debate.org | Member Login";
	document.getElementById("loginH1").innerHTML = "Member Login";
}

function FormFocus()
{
	var a = document.getElementById('formLogin').loginEmail;
	var b = document.getElementById('formLogin').loginPass;
	
	if (a.value == "")
		a.focus();
	else
		b.focus();
}

function FormValidate(o)
{
	if (o.loginEmail.value == "") {alert("Enter your email address."); o.loginEmail.select(); return false;}
	if (o.loginPass.value == "") {alert("Enter a password."); o.loginPass.select(); return false;}
	if (o.loginSecCode != null) {if (o.loginSecCode.value == "" || o.loginSecCode.value == "Type code here...") {alert("Enter the security code."); o.loginSecCode.focus(); return false;}}
	return true;
}
