$(function(){
	//DIALOG			
	$('#login_modal').dialog({
		autoOpen: false,
		width: 330,
		modal: true,
		resizable: false,
		draggable: false,
		dialogClass: 'fixed_dialog',
		title: 'Login',
		closeOnEscape: true,
		buttons: {
			"Login": function() { 
				schoolLogin();
			}
		}
	});
})

function loginModal(){
	$('#login_modal').dialog('open');
}

function schoolLogin(){
	//VARIABLES
	var send_schoolCode = document.getElementById("schoolCode").value;
	
	//AJAX REQUEST
	$.ajax({ url: "/corp/includes/actions/schoolLogin.php", dataType: "xml", data: { schoolCode: send_schoolCode }, success: function(xml){
		$(xml).find('response').each(function(){
			var status = $(this).find('status').text();
			var schoolCode = $(this).find('schoolcode').text();
			
			if(status=="success"){
				window.location = "https://www.myyearbooksales.com/staff/login.php?school="+schoolCode;
			} else {
				$('#error_text').html("The school code you entered does not exist.");
			}
		});
	}});
}
