function everythingok() {
with (document.addques) {
          testing=ordername.value;
          if (testing.length == 0 || testing=="") {
                  alert("Please enter a Name")
                  return false
          }
		  testing=remspaces(orderemail.value)
		  if (testing.length < 8 || testing=="" || testing.indexOf("@") == -1  ) {
			  alert("Please enter A Valid E-Mail Account")
			  return false
		  }

          return true
 }
}
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
}
