function gotoURL(url,pop) {
	if(pop==1) {
		window.open(url);
	}else{
		window.location.href = url;
	}
}

function gotoIndex(opt) {
	window.location.href = "index.php?" + opt;
}

function gotoPage(page) {
	window.location.href = "index.php?page=" + page;
}

function popupURL(page,largeur,hauteur,options) {
  var top=(screen.height-hauteur)/2;
  var left=(screen.width-largeur)/2;
  window.open(page,"","top="+top+",left="+left+",width="+largeur+",height="+hauteur+","+options);
}

function confirmerSuppression() {
	if(confirm("Attention la suppression est definitive ! Continuer ?")==true) {
		return true;
	}else{
		return false;
	}
}
