function remspaces(what) {
        result=""
        for (x=0;x<=what.length;x++) {
                if (what.substring(x,x+1) != " ") {
                    result=result+what.substring(x,x+1)
                }
        }
        return result
}
function everythingok() {
//alert("Hi")
with (document.frmAddName) {
	testing=remspaces(email.value)
	  if (testing.length < 8 || testing=="" || testing.indexOf("@") == -1  ) {
		  alert("Please enter a valid E-Mail Account")
		  return false
	  }
	  return true
 }
}