document.write("<form method='post' action='quick-enquiry.asp' onsubmit='return QuickSubmit();' id='topform'>")
document.write("    <table width='100%' border='0'>")
document.write("        <tr>")
document.write("            <td>")
document.write("                Name *</td>")
document.write("            <td>")
document.write("                <input name='topnamebox' maxlength='255' style='width: 150px' id='topnamebox' alt='name' />")
document.write("            </td>")
document.write("        </tr>")
document.write("        <tr>")
document.write("            <td>")
document.write("                E-mail *</td>")
document.write("            <td>")
document.write("                <input name='topemailbox' maxlength='255' style='width: 150px' id='topemailbox' alt='email' /></td>")
document.write("        </tr>")
document.write("        <tr>")
document.write("            <td>")
document.write("                Comment</td>")
document.write("            <td>")
document.write("                <textarea name='topcommentbox' id='topcommentbox' ></textarea>")
document.write("            </td>")
document.write("        </tr>")
document.write("        <tr>")
document.write("            <td colspan='2'>")
document.write("                <div align='center'>")
document.write("                    <input value='Submit' class='topformbutton' type='submit' />")
document.write("                </div>")
document.write("            </td>")
document.write("        </tr>")
document.write("    </table>")
document.write("    ")
document.write("    <script type='text/javascript'>")
document.write("    function QuickSubmit()")
document.write("    {")
document.write("        flag=true;")
document.write("        errmsg='';	")
document.write("        var docf = document.forms[0];")
document.write("        docf.topnamebox.value = trimString(docf.topnamebox.value);")
document.write("        docf.topemailbox.value = trimString(docf.topemailbox.value);")
document.write("    ")
document.write("        if (docf.topnamebox.value == '') {")
document.write("            alert('Please enter Name.');")
document.write("            docf.topnamebox.focus();")
document.write("            return false;")
document.write("        }")
document.write("        ")
document.write("        if (docf.topemailbox.value == '') {")
document.write("            alert('Please enter Email.');")
document.write("            docf.topemailbox.focus();")
document.write("            return false;")
document.write("        }")
document.write("        ")
document.write("        if (emailValidation(docf.topemailbox.value) == false) {")
document.write("            alert('Please enter Correct Email.');")
document.write("            docf.topemailbox.focus();")
document.write("            return false;")
document.write("        }")
document.write("        return true;")
document.write("        /*if(confirm('Are you sure you want to continue?'))")
document.write("            return true;")
document.write("        else")
document.write("            return false;*/")
document.write("    }")
document.write("    </script>")
document.write("</form>")
//-->
