//
function getwidth() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var width = (document.body.clientWidth);
return width;
} else {                                                
var width = (window.innerWidth);
return width;
}
return;      
}
// End -->
//
function getheight() {
if (navigator.userAgent.indexOf("MSIE") > 0) {
var height = (document.body.clientHeight);
return height;
} else {                                                
var height = (window.innerHeight);
return height;
}
return;      
}
// End -->

<!-- Begin
var Top = Math.round(((getheight()- 422)/2)+30);
// définition de point de départ du premier menu, nombre de menu fixe = 5
var Left = Math.round(((getwidth()- 750)/2)+183); // 182
//document.write(Left);
// End -->