
function openWindowXY(loc,X,Y) 
{   
    var strOpen;
    strOpen = "'status=no,scrollbars=yes,resizable=yes,screenX=40,screenY=40,width=" + X + ",height=" + Y + "'"
    window.open(loc, 'Fenetre', strOpen);
}

function imgover(imgname){
if (!document.all)
return
var source=event.srcElement
//if (source.tagName=="IMG")
source.src = '/france_climatisation/images/'+imgname+'_on.gif';
}

function imgout(imgname){
if (!document.all)
return
var source=event.srcElement
//if (source.tagName=="IMG")
source.src = '/france_climatisation/images/'+imgname+'.gif';
}

