// JavaScript Document


function rollover(nomimage,nomfichier,divname) {
	if (document.layers && divname != '') {
		eval("document.layers." + divname + ".document.images['" + nomimage + "'].src = '" + nomfichier + "';");
	} else {
		document.images[nomimage].src = nomfichier;
	}
}

function openWindow(url , name , width , height , showChrome , canResize , canScroll , top , left) {
	
addScrolls = "no";
if (canScroll == true ) addScrolls = "auto";

	var options = 'status='+showChrome+', resizable='+canResize+', menubar='+showChrome+', toolbar='+showChrome+',location='+showChrome+',width='+width+',height='+height+',scrollbars='+canScroll;
	if ( top != "" ) {
		options+= ',top='+top;
	}
	if ( left != "" ){
		options+= ',left='+left;
	}
	newWindow = window.open( url, name, options);
    newWindow.focus()
}