

$(document).ready(function()
{

    $("a.ext").each( function () { 
    	
     
        $(this).click( function () { 
            window.open( $(this).attr('href') );
            return false; 
    	});
       

            
    } ) ;
    
    
    
     $("a.tfmonline").each( function () { 
    	
     
        $(this).click( function () { 
            window.open(    $(this).attr('href'),
                            'win',
                            'toolbar = no, location = no, directories = no, menubar = no, resizable = yes, scrollbars = no, status = no, width = 350, height = 250');
            return false; 
    	});
       

            
    } ) ;
    
    
});

