$(document).ready(function(){
    
    function MM_openBrWindow(theURL,winName,features) { //v2.0
        // Modified to make my windows open up centered
        tl_width = features.substring(features.indexOf("width=")+6,features.indexOf("width=")+9) * 1
        tl_height = features.substring(features.indexOf("height=")+7,features.indexOf("height=")+10) * 1
        var left = Math.floor( (screen.width - tl_width) / 2);
        var top = Math.floor( (screen.height - tl_height) / 2)
        var winParms = "top=" + top + ",left=" + left
        if (features) { winParms += "," + features; }
        window.open(theURL, winName, winParms);
    }

    $(".productLink").click(function() {
        var link = $(this).attr('href');
        var title = $(this).attr('name');
        MM_openBrWindow(link, title, 'width=650,height=690');
        return false;
    });
    
});

