	// When DOM loads, init the page.
$( myForm );
	function myForm(){
		
		$("#SignInUserEmailCheck").change(function() { //if the value of these elements change, do this
			var id1 = $("#SignInUserEmailCheck").val();
			//var id2 = $("#id2").val();
			$.post("/common/cfc/membercheck.cfm", $("#SignInUserEmailCheck"), function(data) 
				{
					$("#elementCheck").html(data); 
				});
			return false;
		});

/*

$("#invoiceDate").change(function() { //if the value of these elements change, do this
	var id1 = $("#invoiceDate").val();
	//var id2 = $("#id2").val();
	
	$.post("postInvoice.cfm", $("#invoiceDate"), function(data) 
		{
			$("#elementCheck").html(data); 
		});
	return false;
});*/

}