﻿/*
Top Group Solution Source
Hospital JS
Rev:0
July 2010
Author: Farouq Zahra
(C) All Rights Reserved
*/

//generic crossbrowser redirector
//not reachable via Search Engine
function redirect(url) {
    document.location.href = url;
}

//fix menu glitch in FF/Opera and Safari



$(document).ready(function () {
    fnResize();
    $(window).resize(function () {
        fnResize();
    });
});


function fnResize() {
    var winHeight = $(window).height() - 150;
    $("#body_container").css({ 'min-height': winHeight });
}
