// JavaScript Document

function canviMenu(apartat,altres) {
	   if (apartat==0) {
	   	document.location = "index.php";
	   }
	   else {
	   	document.location = "index.php?menu="+apartat+altres;
	   }
	   
	   
}

function canviMenuIntranet(apartat) {
	   if (apartat==0) {
	   	document.location = "llistaProjectes.php"
	   }
	   else if (apartat==1){
	   	document.location = "llistaCategories.php";
	   }
	   else if (apartat==2){
	   	document.location = "llistaEspaiBuit.php";
	   }
	   else if (apartat==3){
	   	document.location = "llistaCategoriesEspaiBuit.php";
	   }
	   else if (apartat==4){
	   	document.location = "afegirQuiSom.php";
	   }
	   
}

function canviGrupProjectes(grup) {
	   document.location = "index.php?menu=1&categoria="+grup;	      
}
function canviGrupEspaiBuit(grup) {
	   document.location = "index.php?menu=2&categoria="+grup;	      
}
