// JavaScript Document
<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

////POP UP
function open_popup(url,titre,largeur,hauteur,scrollbar){
	var top=(screen.height-hauteur)/2;
	var left=(screen.width-largeur)/2;
	window.open(url,titre,"top="+top+",left="+left+",width="+largeur+",height="+hauteur+",menubar=no,scrollbars="+scrollbar+",statusbar=no");
	
}


function chronique(id){
	
					///POP UP
					open_popup("popup_chronique.php?spectacle_id="+id,'chronique',420,340,'yes');

}

function galerie(id){
	
					///POP UP
					open_popup("popup_galerie.php?galerie_id="+id,'galerie',420,340,'yes');

}

//-->
