// JavaScript Document para controlar tamaņos de capas
function modificarCapa(){
		if (navigator.userAgent.indexOf('MSIE')!=-1 ) {			
			document.getElementById("cierreLateral").style.height=(document.documentElement.clientHeight-450)+"px";			
			document.getElementById("cuerpo").style.height=(document.documentElement.clientHeight-70)+"px";				
			document.getElementById("cuerpo").style.width=(document.documentElement.clientWidth-331+5)+"px";
			document.getElementById("valida").style.top=(document.documentElement.clientHeight-40)+"px";
			document.getElementById("pieDerecho").style.top=(document.documentElement.clientHeight-70)+"px";
			document.getElementById("pieDerecho").style.left=(document.documentElement.clientWidth-300)+"px";
		}
		else{
			document.getElementById("cierreLateral").style.height=(innerHeight-450)+"px";			
			document.getElementById("cuerpo").style.height=(innerHeight-70)+"px";			
			document.getElementById("cuerpo").style.width=(innerWidth-331+5)+"px";			
			document.getElementById("valida").style.top=(innerHeight-40)+"px";
			document.getElementById("pieDerecho").style.top=(innerHeight-70)+"px";
			document.getElementById("pieDerecho").style.left=(innerWidth-300)+"px";
		}
}

window.onresize=function(){
	modificarCapa();
}	