function inicio(w,h,foto) {
	// w es la anchura de la imagen
	// h es la altura de la imagen
	// foto el nombre del htm donde esta la foto
        var ancho,alto,w2,h2;
		w2=w/2
		h2=h/2
		ancho=screen.width/2-w2;
		alto=screen.height/2-h2;
		
		 window.open(""+foto+"","","width="+w+",height="+h+",left="+ancho+",top="+alto+"");
		  }
function mailpage()
{
  mail_str = "mailto:nombre@dominio.com?subject=visita esta página " + document.title;
  mail_str += "&body=Te recomiendo visitar la web www.olus.es";
  mail_str += ". Enlace: " + location.href; 
  location.href = mail_str;
}

function Agregar() {

 title = document.title; 
 url = window.location.href;
 
    if (window.sidebar)
	{ // Mozilla Firefox Bookmark
        window.sidebar.addPanel(title, url,"");
    }
	else if( window.external )
	{ // IE Favorite
        window.external.AddFavorite( url, title); 
	}
   
 }
 