/* Button Zuruck */
function Main_Btn_Zuruck_Click(link) {
    location.href = link;
}
function Main_Btn_Zuruck_Over(element) {
    el = element;
    el.style.backgroundColor = "#F0FFF8";
    el.style.color = "#005F00";
    el.style.cursor = "pointer";
}
function Main_Btn_Zuruck_Out(element) {
    el = element;
    el.style.backgroundColor = "#FFFFFF";
    el.style.color = "#0B9214";
    el.style.cursor = "";
}
/* Button Zuruck Ende */



/* SubMenu */
function Main_Submenu_Click(link) {
    location.href = link;
}
function Main_Submenu_Over(element) {
    el = element;
    el.style.backgroundColor = "";
    el.style.cursor = "pointer";
    el.style.color = "";
}
function Main_Submenu_Out(element) {
    el = element;
    el.style.backgroundColor = "";
    el.style.color = "";
    el.style.cursor = "";
}
/* SubMenu Ende */



/* Sprache Ändern */
    function Sprache_Change(link) {
        window.open(link, "", "width=100,height=100,left=0,top=0,scrollbars=yes");
    }
