var openWindows = {};$(function () {        $('a._blank').attr('target', '_blank');        $('a._newwin').die().live('click', function () {        var href = $(this).attr('href');        var rel = $(this).attr('rel').split('|');        if (typeof(rel[0]) == 'undefined') {            rel[0] = 100;        };        if (typeof(rel[1]) == 'undefined') {            rel[1] = 100;        };        openWindows[$(this).attr('id')] = CenterWin(href, rel[0], rel[1], '_blank');        return false;    });});
