Well, you could just make phone optional, email is required no matter what, especially if they are sending you an email... without it the mail wouldn't be sent.
You could do:
Code:
if(empty($contact["email"])) $contact["email"]="someemail@email.com";
But you'll need to remove the javascript client side check on the forms as well as in the $fillerror check.
hth.
