﻿
window.onload = function(){ AdjustWidth(); }
window.onresize = function(){ AdjustWidth(); }

function AdjustWidth() {

	var w = document.body.clientWidth;
	var c = document.getElementById( "container" );
	
	if( c != null ) {
	
		if (navigator.appName.indexOf("Microsoft") >= 0) {
			if (navigator.appVersion.indexOf("MSIE 5") < 0){
				c.setAttribute("style","width: 700px !important" );
				c.setAttribute("style","height:150%;overflow:auto;" );
				c.style.width = "700px";
			}
		}
		if (navigator.appName.indexOf("Netscape") >= 0) {
			c.setAttribute("style","width: 700px !important" );
			c.style.width = "700px";
		}
		if (navigator.appName.indexOf("Opera") >= 0) {
			c.setAttribute("style","width: 700px !important" );
			c.style.width = "700px";
		}				
		else {
			c.setAttribute("style","width: 700px !important" );
			c.style.width = "700px";		
		}
	}
}


function montre(id) {
	var d = document.getElementById(id);
	for (var i = 1; i<=10; i++) {
		if (document.getElementById('smenu'+i)) { 
			document.getElementById('smenu'+i).style.display='none';
		}
	}
	if (d) {
		d.style.display='block';
	}
}