$(document).ready( function(){
	
	if ( document.location.href.indexOf("processForm") <= 0 ) {
		$("#FormTable").hide();
		
		$("<h2><a href=\"#\">Click to proceed to the Contact Form</a></h2>")
		.insertBefore("#FormTable")
		.click(function(){
			$("#FormTable").show();
			$(this).hide();
			});
		}
	
});
