﻿$(document).ready(function() {
    $("#bNav li a").click(function(e) {
        e.preventDefault();
        var w;
        var h;
        if ($(this).attr('rel') == '3') {
            w = '840';
            h = '500';
            window.open($(this).attr('href'), "Popup" + $(this).attr('rel'), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + w + ',height=' + h + ',left = 240,top = 100');
        }else{
            if ($(this).attr('rel') == '1') {
                w = '840';
                h = '500';
                window.open($(this).attr('href'), "Popup" + $(this).attr('rel'), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=' + w + ',height=' + h + ',left = 240,top = 100');
            } else {
                w = '545';
                h = '450';
                window.open($(this).attr('href'), "Popup" + $(this).attr('rel'), 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=' + w + ',height=' + h + ',left = 240,top = 100');
            }
        }
    });
});
