// JavaScript Document
function popup(url,l,h,arg){
	
	//url = 'http://bars-and-co.comtel.fr/'+decodeURIComponent(url);
	url = 'http://www.bars-and-co.fr/'+decodeURIComponent(url);
	//alert(url);
	arg	=	true;
	//l	=	700;
	//h	=	500;
	option	=	',scrollbars=1, resizable=yes';
	newWindow= window.open(url,'popup','width='+l+',height='+h+',left='+(screen.width-l)/2+',top='+((screen.height-h)/2)+option);
	newWindow.focus();
}

// gestion des page avec des onglets
onglet = {
	//passe tous les onglets à off et met l'onglet sélectionné à ON
	switchOnglet	: function(idShow,elt){
		$$('.onglet-contenu').invoke('removeClassName','on');
		$$('.onglet-titre').invoke('removeClassName','on');
		elt.addClassName('on');
		$(idShow).addClassName('on');
	}
	
}
function alertFlash(txt){
	//txt = "eeeee"+txt;
	alert(txt);
}