
 function ancho_max(ancho,fuente)
	{
	 foto	  = new Image()		;
	 foto.src = fuente		;
	 if (foto.width<ancho)
		{ancho2=foto.width}
	   else
		{ancho2=ancho}		;

	 return ancho2	;
	}


 function agregar_a_fav()  {
	url    = location.href	;
	nombre = document.title	;
	if (window.external) {
			      window.external.AddFavorite( url, nombre);
			     }
		else if(window.sidebar)
			    {
			     window.sidebar.addPanel(nombre, url,"");
			    }
			else if(window.opera && window.print)
				 { return true; }
			}

