<!--

					function clearText(thefield)
					{
						if (thefield.defaultValue == thefield.value)
										thefield.value = ""
      				else thefield.value = ""
					} 						
			

function checkform() {
        if (document.createaccount.username.value.length <= 3)
        {
                // something is wrong
                alert('Please enter a username of 4 or more characters');
                return false;
        }
		if (document.createaccount.email.value.indexOf("@",1)==-1) {
			alert ('Invalid email address - please check')
			return false
		}
		if (document.createaccount.email.value.indexOf(".",1)==-1) {
			alert ('Invalid email address - please check')
			return false
		}
       
        // If the script gets this far through all of your fields
        // without problems, it's ok and you can submit the form 
        
        return true; }

function checkform2() {
        
		if (document.createaccount.email.value.indexOf("@",1)==-1) {
			alert ('Invalid email address - please check')
			return false
		}
		if (document.createaccount.email.value.indexOf(".",1)==-1) {
			alert ('Invalid email address - please check')
			return false
		}
       
        // If the script gets this far through all of your fields
        // without problems, it's ok and you can submit the form 
        
        return true; }

-->


