﻿$(document).ready( function()
    {
    
//======Create newWin Links======================================================
        $('.newWin').each( function()
            {
                //add a notice to the title attribute
                if (this.title == "") { this.title = "(new window)"; }
                else { this.title = this.title + " (new window)"; }
                
                //add the click event
                $(this).click( function(e)
                    {
                        if(!e)e = window.event;
                        if(e.shiftKey || e.ctrlKey || e.altKey) return;
                        window.open(this.href);
                        return false;
                    }
                );
            }
        );//End newWin Links
    }
);