﻿function master_onload()
{
handleFooter();	
}

function handleFooter()
{
if($("body")[0].scrollHeight <  $(window).height() )
{
	$('#footerdiv').css("position","absolute"); 
	$('#footerdiv').css('top', $(window).height() - 31);
	}
}

function ShowPicture() {
    window.open("/html/print.html", null, "height=400,width=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes");

}

function ShowManagerBar() {
    var isCtrl = false;

    $(document).keyup(function(e) {
        if (e.which == 17) isCtrl = false;
    }).keydown(function(e) {
        if (e.which == 17) isCtrl = true;
        if (e.which == 77 && isCtrl == true) {
            $('.divForManager').toggle();
            return false;
        }
    });
}

