function onResizeAlinhar()
{
	
	var winW = 0, winH = 0;

	if (parseInt(navigator.appVersion)>3) {
	 if (navigator.appName=="Netscape") {
	  winW = window.innerWidth;
	  winH = window.innerHeight;
	 }
	 if (navigator.appName.indexOf("Microsoft")!=-1) {
	  winW = document.body.offsetWidth;
	  winH = document.body.offsetHeight;
	 }
	}
	

	if(winW<=1024)
	{
		document.getElementById("coluna_esquerda_width").width = "69%";
	}
	else if(winW<=1088)
	{
		document.getElementById("coluna_esquerda_width").width = "68%";
	}
	else if(winW<=1152)
	{
		document.getElementById("coluna_esquerda_width").width = "67%";
	}
	else if(winW<=1216)
	{
		document.getElementById("coluna_esquerda_width").width = "66%";
	}
	else
	{
		document.getElementById("coluna_esquerda_width").width = "65%";
	}
	//document.getElementById("coluna_direita_width").width = "30%";

}