$(document).ready(function() { 
    $('#myForm').ajaxForm({
		success: function(responseText, responseCode) {
		$("#divContact").fadeIn("slow").html(responseText);
			//tb_remove();
			setTimeout("tb_remove()",5000);
		}
	}); 
}); 

$(document).ready(function() { 
    $('#myFormAgent').ajaxForm({
		success: function(responseText, responseCode) {
		$("#divContact").fadeIn("slow").html(responseText);
		alert(responseText);
		}
	}); 
}); 
