$(document).ready(function()
{
    $("#fContact").submit(fRequest_OnSubmit);
});

function fRequest_OnSubmit()
{
  if(!checkStringValue('name', 'Name'))
    return false;
  if(!CheckEmail('email'))
		return false;
  if(!checkStringValue('location', 'Location'))
	    return false;
  if(!checkStringValue('message', 'Message'))
	    return false;

  return true;
}

