sealMail... What is different from the code that's giving the error mysql_fetch_row() and this script you posted which uses mysql_fetch_array()? Are you sure you're posting the correct script? Also, it may help if you post a table structure here because that could be contributing to the problem...
Basically, it means your query can't be processed by mysql properly...
Change to:
$rs = @mysql_query( $sql ) or die(mysql_error());
And let's see if this spits out the error...