function setfocus()
{
document.formx.EmailAddress.select();
document.formx.EmailAddress.focus();
}

function append()
{
var username=document.formx.EmailAddress.value;
if (username == "ab")
	{
	username += "c";
	//change "ab" to "abc"
	}
var at=username.indexOf("@");
if (at == -1)
	{
	username += "@theweldingclub.com";
	//add domain name if it be not there
	}
document.formx.EmailAddress.value=username;
}

function randomnumber(n)
{
var r = Math.random();
r = Math.floor(r*n);
r += 1;
return (r);
}

function statusx()
{
window.status = "The Welding Club";
}

