﻿$(document).ready(function () {
    if (top !== self) {
        top.location = self.location;
    }
    $('a[rel="external"]').click(function () {
        window.open($(this).attr('href'));
        return false;
    });
    ResizeScreen();
});
$(window).resize(function () {
    ResizeScreen();
});
function ResizeScreen() {
    $('#MoreInfo').css('width', $(window).width() + 'px');
    $('#MoreInfo').css('height', $(window).height() - 170 + 'px');
    $('#PageFrame').css('width', $(window).width() + 'px');
    $('#PageFrame').css('height', $(window).height() - 170 + 'px');
    $('#WhiteSpace').css('width', $(window).width() + 'px');
    $('#WhiteSpace').css('height', $(window).height() - 170 + 'px');    
    return true;
}
