	$(document).ready(
        function(){
           $(".interior_boton a").each(function(){
              var href = $(this).attr("href");
              $(this).click(function(){         
                 $("#derecha").hide().load(href).show(); //Le damos efecto
                 $(this).attr({ href: "#"});
              });
       });
    });
	
	
// JavaScript Document

function nota() { 
		var url = 'nota_legal.html';
		var width = 350; 
		var height = 470; 
		//var width = screen.availWidth; 
		//var height = screen.availHeight; 
//		var izda= ((screen.availWidth-width)/2);
	//	var superior= ((screen.availHeight-height)/2);
	var izda= 20;
	var superior= 20;
		
		var specs = "fullscreen=no,left=" + izda +",top=" + superior +",screenX=0,screenY=0"; 
		specs += ",width=" + width + ",height=" + height; 
		specs += ",scrollbars=yes,toolbar=no,menubar=no"; 
		specs += ",status=no,location=no"; 
		specs += ",directories=no,resizable=no,alwaysRaised"; 
		//specs += ",innerHeight=" + height + ",innerWidth=" + width; 
		var Popup = window.open(url, 'nota', specs); 
		Popup.resizeTo(width,height);
		//vete();
};
