function Roll(nom,img)
  {
document.images[nom].src="images/interface/" + img;
  }

function openNewWindow(URLtoOpen, largeur,hauteur) {
//alert(URLtoOpen);
try { newWindow.close();} catch(error) { }
	
hauteurecran=Math.round((screen.availHeight-hauteur)/2);
largeurecran=Math.round((screen.availWidth-largeur)/2);

h=80+hauteur;
l=80+largeur;

newWindow=window.open(URLtoOpen, "win", "toolbar=0,location=0,directories=0,status=0, scrollbars=auto,resizable=yes,menubar=0,top="+hauteurecran+",left="+largeurecran+",width="+l+",height="+h);
newWindow.focus();

}



