
function inquiry()
    {  
var OpenWindow=window.open("", "inqwin", "height=500,width=450");
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>Simonicchi Enquiry</TITLE>")
OpenWindow.document.write("<BODY bgcolor='9BBC8B'>")
OpenWindow.document.write("<FONT style='color:navy; font-family: verdana, arial, helvetica, sans-serif; font-size: 10pt'>")
OpenWindow.document.write("<form method='post' action='/cgi-bin/mailform.pl'>")
OpenWindow.document.write("<P><b>Simonicchi Enquiry</b><br>")


OpenWindow.document.write("<P>Your name:<font color=red>*</font><br>") 
OpenWindow.document.write("<INPUT NAME='realname' Size=50 Type='text'><br><br>")

OpenWindow.document.write("<P>Your email address:<font color=red>*</font><br>") 
OpenWindow.document.write("<INPUT NAME='email' Size=50 Type='text'><br><br>")

OpenWindow.document.write("<P>Please write your message below,<br>and include your telephone number:<font color=red>*</font><br>")
OpenWindow.document.write("<TEXTAREA NAME='comments' ROWS=7 COLS=50></TEXTAREA><br><br>")

OpenWindow.document.write("<P align='center'>")
OpenWindow.document.write("<INPUT TYPE='submit' Value='Send'>&nbsp;&nbsp;")
OpenWindow.document.write("<INPUT TYPE='reset' Value='Clear'><br><br></p>")
OpenWindow.document.write("<font size='-1'>")
OpenWindow.document.write("<P>Thank you for your enquiry.<br>")
OpenWindow.document.write("We shall get back to you very soon.</p>")
OpenWindow.document.write("<a href='' onClick='self.close()'>Close Window</a> </font>")

OpenWindow.document.write("<INPUT TYPE='hidden' NAME='recipient' VALUE='jenniferbarnard@libero.it '>")
OpenWindow.document.write("<INPUT TYPE='hidden' NAME='subject' VALUE=' Simonicchi Enquiry '>")
OpenWindow.document.write("<INPUT TYPE='hidden' NAME='required' VALUE='realname,email,comments'>")
OpenWindow.document.write("<INPUT TYPE='hidden' NAME='redirect' VALUE='/thanks.htm'>")

OpenWindow.document.write("</FORM>")
OpenWindow.document.write("</FONT>")
OpenWindow.document.write("</HTML>")
    }
