function textpage_googleboxClick(lang, conf) {
    submenuCall('./php/textpage.php', 'conf=' + conf + '&lang=' + lang + '&translate=true');
}

function textpage_googleboxOver(language){
    document.getElementById("textpage_googlebox"+language).style.backgroundColor = "#066b04";
    document.body.style.cursor = 'hand';
}

function textpage_googleboxOut(language){
    document.getElementById("textpage_googlebox"+language).style.backgroundColor = "#FFFFFF";
    document.body.style.cursor = 'default';
}

function textpage_languageboxClick(lang, conf) {
    submenuCall('./php/textpage.php', 'conf=' + conf + '&lang=' + lang);
}

function textpage_languageboxOver(language){
    document.getElementById("textpage_languagebox"+language).style.backgroundColor = "#066b04";
    document.body.style.cursor = 'hand';
}

function textpage_languageboxOut(language){
    document.getElementById("textpage_languagebox"+language).style.backgroundColor = "#FFFFFF";
    document.body.style.cursor = 'default';
}

function textpage_downloadbuttonClick(conf, lang, translate) {
    window.open('./php/pdf.php?conf=' + conf + '&lang=' + lang + '&translate=' + translate);
}

function textpage_downloadbuttonOver(){
    document.getElementById("textpage_downloadbutton").style.color = "#AA4444";
    document.body.style.cursor = 'hand';
}

function textpage_downloadbuttonOut(){
    document.getElementById("textpage_downloadbutton").style.color = "#444444";
    document.body.style.cursor = 'default';
}


