function addLanguage() {

	var data = $('#language').serialize();

	$.ajax({
			
		type: "POST",
	        url: "?fnc=Language&proc=addLanguage",
		data: data,
		success: function(response){
			window.location = '?fnc=Language&proc=admin';
		}
       	
	});
}

/**
 * Function to delete the language with the given ID
 */
function deleteLanguage(id)
{
	
	var resp = confirm('Are you sure you want to delete the language?');
	
	if (resp == true ) {
		jQuery.post('?fnc=Language&proc=deleteLanguage', { id: id }, function(data){
				alert(data);
				window.location='?fnc=Language&proc=admin';
		} );
		
	}
	
}

/**
 * Selects only one checkbox and makes the selected checkbox the default
 */
function defaultlanguage(id, frm) {
	
	checkboxes(id, frm);

	jQuery.post('?fnc=Language&proc=defaultLanguage', { id: id}, function(data){
			window.location='?fnc=Language&proc=admin';
	} );
	

}
