function verificationCall(url, phone) {
	if (phone != '') {
		$.ajax({
		    url: url + "?phone=" + phone,
		    type: "GET",
		    dataType: "html",
		    error: function(){
		        //alert("Error loading Yodle Articles");
		    },
		    success: function(html){
		    }
		});
	}
	else alert("This is a temporary field that is used for testing. Please enter a number to call");
	
}
