// Check the subdomain
function checkdomain(){
	// Call db template and get feedback
	var subdomain = $("#subdomain").val();
	$("#divdomain").load("/includes/checkdomain.cfm?thedomain=" + subdomain);
}
// Check the subdomain
function checkuser(){
	// Call db template and get feedback
	var ulv = $("#user_email").val();
	$("#divuser").load("/includes/checklogin.cfm?theuser=" + ulv);
	return false;
}
// Form: Get Action URL
function formaction(theid) {
	var theaction = $('#' + theid).attr("action");
	return theaction;
} 
// Form: Serialize Data
function formserialize(theid) {
	var theser = $('#' + theid).serialize();
	return theser;
} 

