			var isIE;
			var stl;
			function redimensiona(){
				// redondeamos los divs
				if(!NiftyCheck())
					return;
				//redondeamos la cabecera
				RoundedTop("div#cabecera","#101010","#F4EFEB");
				RoundedBottom("div#cabecera","#101010","#F3EBDE");
				//redondeamos el menu				
				
				RoundedTop("div#izquierda","#101010","#640000");
				RoundedBottom("div#izquierda","#101010","#98090f");
				//RoundedTop("div#mensaje","#101010","#C0C0C0");
				//RoundedBottom("div#mensaje","#101010","#E0E0E0");
				//ahora el centro 
				Rounded("div#centro","#101010","#F0F0F0");
				//Redondeamos el pie
				RoundedTop("div#pie","#101010","#C0C0C0");
				RoundedBottom("div#pie","#101010","#E0E0E0");
				// agrandamos la contendora
				var max = 0;
				if (document.getElementById("centro").clientHeight > document.getElementById("izquierda").clientHeight){
					max = document.getElementById("centro").clientHeight;
				}
				else{
					max = document.getElementById("izquierda").clientHeight;
				}				
				document.getElementById("contenedora").style.height = (max+document.getElementById("cabecera").clientHeight)+"px";
				/*
				document.getElementById("centro").style.height = max+"px";
				document.getElementById("derecha").style.height = max+"px"; 
				document.getElementById("izquierda").style.height = max+"px"; 
				*/
				// USO FUNCION GLOSSY
				
				var tmp = navigator.appName == 'Microsoft Internet Explorer' && navigator.userAgent.indexOf('Opera') < 1 ? 1 : 0;
				if(tmp) 
					isIE = document.namespaces ? 1 : 0;
				/*
				var glossyOnload = window.onload;
				window.onload = function () { if(glossyOnload) glossyOnload(); 
				*/
				if(isIE) {
					if(document.namespaces['v'] == null) {
						stl = document.createStyleSheet();
						stl.addRule("v\\:*", "behavior: url(#default#VML);"); 
						document.namespaces.add("v", "urn:schemas-microsoft-com:vml"); 
					}
				}
				if(isIE){
					addIEGlossy(); 
				}else {
					addGlossy();
				}
				

				// FIN GLOSSY
				
			}
			