function redimensionar()
{
	var DivIZQ = document.getElementById("izq");
	var DivRIG = document.getElementById("centerright");
	
	var tamano = getClientWidth();
	
	if(tamano<=774)
	{
		tamano = 0;
	}
	else
	{
	 	tamano = tamano - 774;
	 	tamano = tamano /2;
	}
	
	DivIZQ.style.width = tamano + "px";
	DivRIG.style.width = tamano + "px";
	
}

function getClientWidth() 
{
	return document.body && typeof document.body.clientWidth != 'undefined' ? document.body.clientWidth : window.innerWidth ? innerWidth : null;
}


