		function ajusteWidth(id) {
			if (is.ie5||is.ns6){
				this.obj = document.getElementById(id).style;
				this.obj.left = 0;
				this.obj.marginLeft = 0;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ie4) {
				this.obj = document.all[id].style;
				this.obj.left = 0;
				this.obj.marginLeft = 0;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ns4) {
				this.obj = document.layers[id];
				this.obj.left = 0;
				this.obj.marginLeft = 0;
				this.obj.visibility="show";
				return this.obj;
			}  
		}
		function ajusteHeight(id,Top,MarginTop) {
			if (is.ie5||is.ns6){
				this.obj = document.getElementById(id).style;
				this.obj.top = Top;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ie4) {
				this.obj = document.all[id].style;
				this.obj.top = Top;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ns4) {
				this.obj = document.layers[id];
				this.obj.top = Top;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="show";
				return this.obj;
			}  
		}
		function retablirWidth(id) {
			if (is.ie5||is.ns6){
				this.obj = document.getElementById(id).style;
				this.obj.left = document.body.clientWidth/2;
				this.obj.marginLeft = -400;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ie4) {
				this.obj = document.all[id].style;
				this.obj.left = document.body.clientWidth/2;
				this.obj.marginLeft = -400;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ns4) {
				this.obj = document.layers[id];
				this.obj.left = document.body.clientWidth/2;
				this.obj.marginLeft = -400;
				this.obj.visibility="show";
				return this.obj;
			}  
		}
		function retablirHeight(id,MarginTop) {
			if (is.ie5||is.ns6){
				this.obj = document.getElementById(id).style;
				this.obj.top = document.body.clientHeight/2;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ie4) {
				this.obj = document.all[id].style;
				this.obj.top = document.body.clientHeight/2;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="visible";
				return this.obj;
			} else if(is.ns4) {
				this.obj = document.layers[id];
				this.obj.top = document.body.clientHeight/2;
				this.obj.marginTop = MarginTop;
				this.obj.visibility="show";
				return this.obj;
			}  
		}
		
		function resizing() {
			if (document.body.clientWidth<800) ajusteWidth("container"); else retablirWidth("container");
			if (document.body.clientHeight<580) ajusteHeight("container",0,0); else retablirHeight("container",-290);

			/*
			if (document.body.clientWidth<800) ajusteWidth("header_menu1"); else retablirWidth("header_menu1");
			if (document.body.clientHeight<580) ajusteHeight("header_menu1",132,0); else retablirHeight("header_menu1",-157);
			resizeHandler();
			*/
		}
