function AddFavorite() 
{ 
  if(window.external) 
     external.AddFavorite(location.href, document.title)
  else 
    alert("Sorry, your browser doesn't support this feature.");
}

function expandIt(){
	return 0;
	hts = screen.height - 310; 
	document.getElementById('expandMe').style.height = hts;
}

function expandItHome(){
	return 0;
	hts = screen.height - 400; 
	document.getElementById('expandMe').style.height = hts;
}

function mostrar(a){
if (document.getElementById(a).style.display =='') {
    document.getElementById(a).style.display = 'none';
   }
   else {
    document.getElementById(a).style.display='';
    }
}

function onbeforeload(){
	menuonbeforeload()
	if(cantidadtotal>0){
		//mostrar('contenidobody')
	}else{
		mostrar('menuizq')
		mostrar('menuizqboton')
		mostrar('contenidoproductos')
	}
}