	
	/*function lesmusiciens(img) 
	{		
		img = "./images/musiciens/"+ img +".jpg";
		w=open("",'image','width=10,height=10,toolbar=no,scrollbars=no,resizable=no');
		w.document.write("<HTML><HEAD><TITLE>Nob - Onb</TITLE><link href=\"styles.css\" rel=\"stylesheet\" type=\"text/css\"></HEAD>");
		w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width,document.images[0].height); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>");
		w.document.write("<BODY onload='checksize();window.focus();' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
		w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
		w.document.write("<TD valign='middle' align='center' class='thumb'><div align=center><IMG src='"+img+"' border=0 alt='"+ img +"'></div>");
		w.document.write("</TD></TR></TABLE>");
		w.document.write("</BODY></HTML>");
		w.document.close();
	}*/
	
	function lesmusiciens(img) { 
		titre="Les musiciens"; 
		img = "./images/musiciens/"+ img +".jpg";
		w=open("",'image','width=400,height=400,toolbar=no,scrollbars=no,resizable=no'); 
		w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE></HEAD>"); 
		w.document.write("<SCRIPT language=javascript>function checksize() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+10,document.images[0].height+30); window.focus();} else { setTimeout('checksize()',250) } }</"+"SCRIPT>"); 
		w.document.write("<BODY onload='checksize()' onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
		w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
		w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='Mon image'>"); 
		w.document.write("</TD></TR></TABLE>");
		w.document.write("</BODY></HTML>"); 
		w.document.close(); 
	}	
	
	function checkrez(divid)
{	
	var largeur=screen.width;
	var hauteur=screen.height;	
	if(largeur<1024){
		document.getElementById(divid).style.margin = '5px 0px 0px 5px';
		document.getElementById(divid).style.left = '0px';
	}else{
	
	}	
}

/**/

function confirmDelete(delUrl) {
	if (confirm("Etes-vous certain de vouloir effacer cette entrée ?")) {
		document.location = delUrl;
	}
}

function createNewPage(lg){
  
  var champ = $F("newpage");
  if(champ != "Ajouter une page")window.location.href = "/"+lg+"/"+champ;
  
}

function clearField(){
  
	$("newpage").value = "";
  
}

function editNewPage(lg){
	var page = $F("editcombo");
	if(page != "null")window.location.href = "/"+lg+"/"+page;
}

function openPopup(p){
	window.open(p,'p','height=330,width=680, toolbar=no,directories=no,status=no,menubar=no, scrollbars=yes,resizable=yes');
	return false;
}

function toggle(obj) {
	var el = document.getElementById(obj);
	if ( el.style.display != 'none' ) {
		el.style.display = 'none';
	}
	else {
		el.style.display = '';
	}
}

function popScherzo(){
	window.open('/pop_Scherzo.html','Scherzo','width=360,height=810');
}