<!-- Begin
function checkUsername(uName){

var atSign;

if (uName.search(" ") != -1)
{
	alert("Email Address cannot contain any spaces.  Please re-enter.");
	document.login.login_username.value = ""
	document.login.login_username.focus();
	return false;
}

atSign = uName.search("@");

if (atSign == -1)
{

document.login.login_username.value = uName + '@ispbooster.com';

}

return false;
}
// End -->