// nota legal
notaLegal = function(myPage){    
  window.open(myPage,"popup","status=no,scrollbars=yes,resizable=no,width=500,height="+screen.height+",top=0,left=0");
}

// biografia
biografia=function(myPage,w){  
  window.open(myPage,"biografia","status=no,scrollbars=yes,resizable=yes,width=500,height="+screen.height+",top=0,left=0");
}

// favoritos
function agregar_favoritos(){
	if((navigator.appName=="Microsoft Internet Explorer") && (parseInt(navigator.appVersion)>=4)){
		var url="http://www.carloslatre.com/";
		var titulo="CARLOSLATRE.COM";
		window.external.AddFavorite(url,titulo);
	}else{
		if(navigator.appName == "Netscape") alert("Presione Crtl+D para agregar este sitio en sus Bookmarks");
	}
}


/*
// homepage
setHomePage = function(){
  var verBase=navigator.appVersion;
  var url="'http://www.carloslatre.com'";
  
  verBase = verBase.match(/MSIE ([^;]+);/);
  verBase = parseFloat(verBase[1]);
  
  if(navigator.appVersion.indexOf('MSIE') > -1 && verBase>=5){
    with(document){
      write(' - <a href="#" ');
      write('onClick="this.style.behavior=');
      write("'url(#default#homepage)';");
      write('this.setHomePage('+url+');">');
      write('Hacer de este sitio mi P&aacute;gina de Inicio</a>');      
    }
  }
}

// popUps
popUp = function(myPage,w,h){
  var myLeft=(screen.width/2)-(w/2);
  var myTop=(screen.height/2)-(h/2);  
  window.open(myPage,"popup","status=no,scrollbars=no,resizable=no,width="+w+",height="+h+",top="+myTop+",left="+myLeft);
}


*/

