function editCategory(id, name){
	newName = prompt("Type the new name of this category", name);
	if( name != null ){
		document.location.href="myCustomScript.php?action=editCategory&id=" + id + "&name=" + newName;
	}
}

function deleteCategory(id){
	if(confirm('Are you sure that you want delete this category?')){
		document.location.href="myCustomScript.php?action=deleteCategory&id=" + id;
	}
}