function showContacts()
{

document.write('<form id="form1" name="form1" method="post" action="'+gsv_furl+'">');
document.write('<input name="_submit_form_" type="hidden" id="_submit_form_" value="sdsdf7435" />');
document.write('  <table width="0%" border="0" cellpadding="5" cellspacing="0" class="contact_form_border">');
document.write('    <tr>');
document.write('      <td class="contact_text">&nbsp;Name*:</td>');
document.write('      <td><label>');
document.write('        <input name="name" type="text" class="contact_text_box" id="name" value="'+gsv_name+'" size="40" maxlength="60" />');
document.write('      </label></td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td class="contact_text">&nbsp;Email*:</td>');
document.write('      <td><label>');
document.write('        <input name="email" type="text" class="contact_text_box" id="email" value="'+gsv_email+'" size="40" maxlength="60" />');
document.write('      </label></td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td class="contact_text">&nbsp;Company:</td>');
document.write('      <td ><label>');
document.write('        <input name="company" type="text" class="contact_text_box" id="company" value="'+gsv_company+'" size="40" maxlength="60" />');
document.write('      </label></td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td valign="top" class="contact_text">&nbsp;Message*:</td>');
document.write('      <td ><label>');
document.write('        <textarea name="message" cols="100" rows="10"  class="contact_text_box" id="message">'+gsv_msg+'</textarea>');
document.write('      </label></td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td colspan="2" align="center"><label>');
document.write('        <input name="Submit" type="submit" class="contact_text_box" value="Submit" />');
document.write('      </label></td>');
document.write('    </tr>');
document.write('    <tr>');
document.write('      <td colspan="2" align="center" ><div class="error_message_box" ><div class="'+gsv_errorclass+'">'+gsv_error+'</div></div></td>');
document.write('    </tr>');
document.write('  </table>');
document.write('</form>');

}
