// JavaScript Document
function Arrange(){
	
	pagHeight=document.documentElement.clientHeight;
	
	footerHeight = pagHeight - (20+document.getElementById("container").offsetHeight);
	
	if(footerHeight>160){
		document.getElementById("footer").style.height=footerHeight+'px';
	}
	
	//alert("Hpag: "+pagHeight);
	//alert("Hfoot: "+footerHeight);
	
	
	pagWidth=document.documentElement.clientWidth;
	
	footerPadding = (pagWidth-880)/2;
	menuPadding = (pagWidth-920)/2;
	fbPadding = (pagWidth-950)/2;
	
	if(document.getElementById("centrador").offsetWidth>880){
		document.getElementById("centrador").style.paddingLeft=footerPadding+'px';
	}else{
		document.getElementById("container").style.width=900;
		document.getElementById("header").style.width=880;
	}
	
	if(document.getElementById("header").offsetWidth>900){
		document.getElementById("logo").style.paddingLeft=menuPadding+'px';
	}else{
		document.getElementById("container").style.width=900;
		document.getElementById("header").style.width=900;
	}
	
	if(pagWidth>950){
		document.getElementById("fbcentro").style.paddingLeft=fbPadding+'px';
		document.getElementById("fbcentro").style.width=(pagWidth-fbPadding)+'px';
		//document.getElementById("fbbox").style.marginLeft=fbPadding+'px';
	}else{
		document.getElementById("fbcentro").style.paddingLeft=0+'px';
		document.getElementById("fbcentro").style.width=950+'px';
	}
	
	
	//alert("Hpag: "+pagWidth);
	//alert("Mfoot: "+footerPadding);
	
	return true;
}

function addfav()
   {
   if (document.all)
      {
      window.external.AddFavorite("http://www.www.1977online.com.ar","1977")
      }
   }

