var addy = 'info' + '@' + 'stweonardshotel.co.uk';
var formhtml = '<form action="/cgi-sys/FormMail.cgi" method="post">';
formhtml += '<input type="hidden" name="recipient" value="' + addy + '" />';
formhtml += '<input type="hidden" name="subject" value="Website Enquiry Form" />';
formhtml += '<input type="hidden" name="redirect" value="http://www.stweonardshotel.co.uk/thankyou.php" />';
formhtml += '<table id="contactform">';
formhtml += '<tr><td>Name:</td>';
formhtml += '<td><input name="Name" type="text" id="Name" size="44" /></td></tr>';
formhtml += '<tr><td>Email Address:</td>';
formhtml += '<td><input name="Email" type="text" id="Email-Address" size="44" /></td></tr>';
formhtml += '<tr><td>Phone number:</td>';
formhtml += '<td><input name="Phone" type="text" id="Phone" size="44" /></td></tr>';
formhtml += '<tr><td>Your message:</td><td><textarea name="Message" cols="46" rows="6" id="Message"></textarea></td></tr>';
formhtml += '<tr><td></td><td><input name="Submit" type="submit" id="submitbutton" value="Send Message" /></td></tr>';
formhtml += '</table>';
formhtml += '</form>';
document.write(formhtml);

