var DrLinux = 
{
    init: function() {
        $('.extLink').bind('click', DrLinux.clickExtLinkHandler);
    },
    
    clickExtLinkHandler: function(event)
    {
        open(this.href);
        event.preventDefault();
        return false;  
    }
};

DrLinux.init();

