<!--
var ie = (document.all);
var ns = (document.layers);
var dom = (document.getElementById && !document.all);

function posCentre(){
var largCalque = 440;
var t=81;
	if (ie) {var x = (document.body.clientWidth / 2 - largCalque / 2);
			Centre.style.pixelLeft = x-t;
			}
	if (ns) {var x = (window.innerWidth / 2 - largCalque / 2);
		document.Centre.left = x-t;
		}
	if (dom) {var x = (window.innerWidth / 2 - largCalque / 2);
		document.getElementById('Centre').style.left = x-t;
		}
}

function posdivContainer(){
var largCalque = 440;
var t=80;
	if (ie) {var x = (document.body.clientWidth / 2 - largCalque / 2);
			divContainer.style.pixelLeft = x-t;
			}
	if (ns) {var x = (window.innerWidth / 2 - largCalque / 2);
		document.divContainer.left = x-t;
		}
	if (dom) {var x = (window.innerWidth / 2 - largCalque / 2);
		document.getElementById('divContainer').style.left = x-t;
		}
}

//-->