function setMenu(str) {

	var o=document.createTextNode(str);
	document.getElementById('mnu_id').appendChild(o);

}


function owindow(titre,cible,width,height)
{
  deco  = 'top=150,left=250,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,width='+width+',height='+height;
  var w = window.open(cible,'',deco);
}



var imgpartenaire=new Array();
var timing=3000;
var curimg=0;



 function diapoauto(){
	 if(curimg<imgpartenaire.length){
		 document.getElementById('imgpart').src=imgpartenaire[curimg];
		 setTimeout("diapoauto()",timing);
		 curimg++;
		 if(curimg==imgpartenaire.length){
			 curimg=0;
		 }
	 }
 }
