// Check the subdomain
function checkdomain(){
	// Call db template and get feedback
	//Spry.Utils.updateContent('divdomain', '/includes/checkdomain.cfm?thedomain=' + document.getElementById('subdomain').value);
	var subdomain = $("#subdomain").val();
	$("#divdomain").load("/includes/checkdomain.cfm?thedomain=" + subdomain);
}
// Check the subdomain
function checkuser(){
	// Call db template and get feedback
	//Spry.Utils.updateContent('divuser', '/includes/checklogin.cfm?theuser=' + document.getElementById('user_login_name').value);
	var ulv = $("#user_email").val();
	$("#divuser").load("/includes/checklogin.cfm?theuser=" + ulv);
	return false;
}

