﻿

function jumptop() {
    self.location.href = "#oben";
}

function OpenPopup(url, name, features) {
    window.open(url, name, features);
}

function MatrixOver(y, x) {
    document.getElementById(y).style.backgroundColor = '#c9e9f8';
    document.getElementById(x).style.backgroundColor = '#c9e9f8';
}
function MatrixOut(y, x) {
    document.getElementById(y).style.backgroundColor = '';
    document.getElementById(x).style.backgroundColor = '';
}

function BeginRequestHandler(sender, args) {
    AsyncLoadingPanel.Show();
}
function EndRequestHandler(sender, args) {
    AsyncLoadingPanel.Hide();
}