// JavaScript Document

<!--   
  function ObrePopUp(e, origen){ 
    if(!document.captureEvents) e=window.event; 
  
    var boto = (e.which?e.which:e.button); 
    var passa = false; 
   
    if(e.type=="click" && (boto==0 || boto==1)) passa = true; 
    if(e.type=="keypress" && e.keyCode==13) passa=true; 
    
    if(passa){ 
        window.open(origen.href, 'popup', ''); 
        return false; 
    } 
 } 
 if(document.captureEvents) { 
    if(Event.KEYPRESS){ 
        document.captureEvents(Event.KEYPRESS); 
    } 
 }  
 
 
-->
