﻿/// <reference name="MicrosoftAjax.js" />
/// <reference path="jquery-1.3.2.js" />
/// <reference path="sifr.js" />

$(function () {
    $('a[href*="http://"][class!="external"]').click(function (e) {
        e.preventDefault();
        window.open('/pages/leavingsite.aspx?q=' + $(this).attr('href'), 'leaving', 'height=516,width=913,menubar=yes,titlebar=yes,scrollbars=yes,status=yes');
    });

    $('#footer a.popup').click(function (e) {
        e.preventDefault();
        window.open($(this).attr('href'), 'popup', 'height=723,width=611,menubar=no,titlebar=no,scrollbars=yes,status=yes');
    });
});