function sendMail($mailto, $mailform, $subject , $message) {
$msg = '<html><style type="text/css">';
$msg .= ' body{font-size:8pt;font-family:Tahoma;color:#666666;}';
$msg .= ' a:link{color:maroon;text-decoration: none;}';
$msg .= ' a:visited{color:maroon;text-decoration: none;}';
$msg .= ' a:hover{color:#526AF9;text-decoration: none;}';
$msg .= "</style><body>$message</body></html>";
$head = "MIME-Version: 1.0\n";
$head .= "Content-type: text/html; charset=TIS-620\n";
$head .= "From: $mailform\n";
$head .= "Reply-to: $mailform\n";
$head .= "X-Priority: 3\n";
$head .= "X-Mailer: PHP mailer\n";
return mail($mailto , $subject , $msg , $head);
}