jQuery(function() {
  function showAnyErrorMessages() {
    <?php if ($hasError == true) { ?>
      	console.debug("Showing the Error Message");
		jQuery("#contactInstruct").css("visibility", "visible");
    <?php } else { ?>
    	jQuery("#contactInstruct").css("visibility", "hidden");
   	<?php }?>
  }
});
