// Query Form

document.write('<form action="./query.php" method="post">');
document.write('<input type="hidden" name="form_name" value="Contact Form">');

document.write('<table style="width:100%; margin-left:auto; margin-right:auto; background-image:url(./image/back3.png); border:1px solid black; border-spacing:1px;">');

document.write('<tr style="background-image:url(./image/back2.png);">');
document.write('<td style="width:25%; padding:5px; text-align:center;"><b>Search For:</b></td>');
document.write('<td style="width:50%; padding:5px; text-align:center;"><input type="text" name="terms" size="40" maxlength="50"></td>');
document.write('<td style="width:25%; padding:5px; text-align:center;"><input type="submit" value="Search"></td>');
document.write('</tr>');

document.write('</table>');
document.write('</form>');
