if you change the name of contact.htm to contact.php you can either copy and paste the form into the page or use
<?php
include("comments.php");
?>
where you want the form to go
You can then set the old page contact.htm to redirect to contact.php and change all the links in your site to the new page
using this code in the head section of the page
<meta http-equiv="refresh" content="0;URL=/contact.php">
hope this is useful
Julia