/**
 * AdjustMenu v1.0
 *
 * Generated by 123 Flash Menu
 * 2006
 *
 */
function AdjustMenu() {
var w_newWidth;
if (navigator.appName.indexOf("Microsoft") != -1) {
    // MSIE4+
    w_newWidth=document.body.clientWidth; 
    document.floater.style.left=10+(w_newWidth-document.floater.width)/2+'px';
}
else { 
    // NN4+&Others
    w_newWidth=window.innerWidth; 
    document.getElementById('floater').style.left=2+(-20+w_newWidth-document.getElementById('floater').width)/2+'px';  
      //  w_newWidth=document.body.clientWidth; 
    //document.floater.style.left=10+(w_newWidth-document.floater.width)/2+'px'; 
} 
} 
