I am trying to submit a form using JavaScript however when I click my button the text in the form disapers but nothing is sent or posted to my php script.
<?php
require_once("../content/includes/validation.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact | Buffalo Bridal Association</title>
<meta charset="utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="Travus A. Gonzalez" />
<meta name="robots" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!--<base href="http://localhost/buffalobridalassociation/" />-->
<base href="http://hooksshoes.com/bbatest/" />
<link rel="icon" href="content/images/favicon2.png" />
<link rel="stylesheet" href="content/styles/reset.css" media="all">
<link rel="stylesheet" href="content/styles/layout.css" media="screen" />
<link rel="stylesheet" href="content/styles/site.css" media="screen" />
<script src="content/scripts/jquery.js"></script>
<script src="content/scripts/document_ready.js"></script>
<script src="content/scripts/cufon-yui.js"></script>
<script src="content/scripts/cufon-replace.js"></script>
<script src="content/scripts/Josefin_Sans_400.font.js"></script>
<script src="content/scripts/Tangerine_700.font.js"></script>
<script src="content/scripts/atooltip.jquery.js"></script>
<script src="content/scripts/jquery.nivo.slider.pack.js"></script>
<script src="content/scripts/script.js"></script>
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5.js"></script>
<style type="text/css">
.aToolTip, .box1, .box1 .inner { behavior: url(js/PIE.htc); }
</style>
<![endif]-->
<!--[if lt IE 7]>
<div style='clear:both;text-align:center;position:relative'>
<a href="http://www.microsoft.com/windows/internet-explorer/default.aspx?ocid=ie6_countdown_bannercode"><img src="http://www.theie6countdown.com/images/upgrade.jpg" border="0" alt="" /></a>
</div>
<![endif]-->
</head>
<body id="page6">
<div class="body1">
<div class="main">
<header>
<div class="wrapper">
<h1><a href="site/index.php" id="logo"></a></h1>
<nav>
<ul id="menu">
<li class="first"><a href="site/index.php">Home</a></li>
<li><a href="site/members.php">Members</a></li>
<li><a href="site/shows.php">Bridal Shows</a></li>
<li id="menu_active"><a href="site/contact.php">Contact</a></li>
</ul>
</nav>
</div>
</header>
</div>
</div>
<div class="body3">
<div class="main">
<article id="content">
<div class="wrapper">
<div class="pad">
<div class="wrapper">
<section class="col1">
<h2>Contact <span>Form</span></h2>
<?php include("../content/includes/contact-email.php"); ?>
<form id="ContactForm" action="site/contact.php" method="post">
<div>
<div class="wrapper">
<span><label for="name">Name:</label></span>
<input type="text" class="input" id="name" name="name" />
</div>
<div class="wrapper">
<span><label for="email">Email:</label></span>
<input type="text" class="input" id="email" name="email" />
</div>
<div class="textarea_box">
<span><label for="message">Message:</label></span>
<textarea name="message" id="message" cols="1" rows="1" placeholder="Tell us about your experience with our Member businesses."></textarea>
</div>
<a href="site/contact.php" onclick="document.getElementById('ContactForm').submit();" class="button"><strong>Send</strong></a>
<a href="javascript:document.getElementById('ContactForm').reset();" class="button"><strong>Clear</strong></a>
</div>
</form>
<p style="margin-top:75px;"><strong>Wedding professionals, not a member of the BBA, what are you waiting for?</strong><br /><a href="http://www.buffalobridalassociation.com/BBA_Application.pdf">Get your membership application today!</a></p>
</section>
<section class="col2 pad_left2">
<h2>Our <span>Info</span></h2>
<p class="pad_bot1">2727 Harlem Road, Buffalo NY, 14225</p>
<div class="wrapper pad_bot1">
<p class="address">
Telephone:<br>
Fax:<br>
E-mail:
</p>
<p>
+1 800 391 9741<br>
716 884 1803<br>
<a href="mailto:info@buffalobridalassociation.com">Click Here</a>
</p>
</div>
<h2>Your <span>Feedback</span></h2>
<p class="pad_bot1">All Members of Buffalo Bridal Association subscribe to a <a href="site/ethics.html">Code of Ethics</a> by which they pledge themselves to honesty and integrity.<br /><br />BBA Members acknowledge that their customers rely on their knowledge, experience and recommendations, and pledge not to betray the trust of their customers.</p>
</section>
</div>
</div>
</div>
</article>
</div>
</div>
<?php
include("../content/includes/footer.php");
?>
</body>
</html>