// JavaScript Document
machinesImg = new Image();
machinesImg.src = "/images/rond_machines.gif";
accessoiresImg = new Image();
accessoiresImg.src = "/images/rond_accessoires.gif";
servicesImg = new Image();
servicesImg.src = "/images/rond_services.gif";
contactsImg = new Image();
contactsImg.src = "/images/rond_contacts.gif";
distributeursImg = new Image();
distributeursImg.src = "/images/rond_distributeurs.gif";
outImg = new Image();
outImg.src = "/images/pixel_transparent.gif";
function roll(id) {
	eval('document.roll_'+id+'.src='+id+'Img.src');
}
function rollOut(id) {
	eval('document.roll_'+id+'.src="/images/pixel_transparent.gif"');
}
var newWin = null;
function closeWin(){
if (newWin != null){
if(!newWin.closed)
newWin.close();
}
}
function popUp(strURL,strType,strHeight,strWidth) {
closeWin();
var strOptions="";
if (strType=="console") strOptions="resizable,height="+strHeight+",width="+strWidth;
if (strType=="fixed") strOptions="status,height="+strHeight+",width="+strWidth;
if (strType=="elastic") strOptions="scrollbars,resizable,location,height="+strHeight+",width="+strWidth;
var Left=window.screen.width/2-175;
var Top=window.screen.height/2-175;
newWin = window.open(strURL, 'newWin', strOptions+', left=' + Left + ', top=' + Top);
newWin.focus();
}
