

$( document ).ready( function() {  
	$("a[rel='pop-up']").click(function () {  
		var caracteristicas = "height=85,width=370,scrollTo,resizable=1,scrollbars=0,location=0";  
		nueva=window.open(this.href, 'Popup', caracteristicas);  
		return false;  
	});  
});  
 
