$(document).ready(function()
{
    $('a').click(function(e)
    {
        if( ($(this).attr('href')).indexOf('http') > 0 && ($(this).attr('href')).indexOf('cicpp.org') < 0)
        {
	            if(!e)e = window.event;
	            if(e.shiftKey || e.ctrlKey || e.altKey) return;
	            window.open(this.href);
	            return false;
        }
    });
});
