$rsvpContent = '<form name="rsvp_form" id="rsvp_form"><table>
<tr><td bgcolor="#6699CC">Your RSVP</td></tr>
<tr><td>'.$rsvpTitle.'</td></tr>
<tr><td><input type="radio" name="'.$rsvpId.'" id="'.$rsvpId.'" value="attending" '.$attCheck.'>Attending</td></tr>
<tr><td><input type="radio" name="'.$rsvpId.'" id="'.$rsvpId.'" value="notattending" '.$notAttCheck.'>Not Attending</td></tr>
<tr><td><input type="radio" name="'.$rsvpId.'" id="'.$rsvpId.'" value="maybeattending" '.$mayAttCheck.'>Maybe Attending</td></tr>
<tr><td align="center">
<input type="button" value="RSVP" >
</td>
</tr>
</table></form>';
//这到底是程序员还是美工呀...
//sets the banckground of messae, due to read or unread messages
if($rs->message_status=='read')
$style ='style="background-color:#CCCCCC;"';
else
$style ='style="background-color:#999999;"';