var contactFormShow = false;


function hideContactFormOnLoad() {
    document.getElementById("contactForm").style.display = 'none';
    document.getElementById("link_hideContactForm").style.display = 'none';
    document.getElementById("link_showContactForm").style.backgroundPosition = 'right';    
}


function showHideContactForm()
{
    if(contactFormShow==false) 
    {
        document.getElementById("contactForm").style.display = 'block';
        document.getElementById("link_hideContactForm").style.display = 'block';
        document.getElementById("link_showContactForm").style.backgroundPosition = 'left';
        contactFormShow = true;
    } 
     else
    {
        document.getElementById("contactForm").style.display = 'none';
        document.getElementById("link_hideContactForm").style.display = 'none';
        document.getElementById("link_showContactForm").style.backgroundPosition = 'right';
        contactFormShow = false;        
    }
}


var contactLandtagShow = false;
var contactSchwedtShow = true;


function hideContactInfosOnLoad() {
    document.getElementById("contactLandtag").style.display = 'none';
}


function showHideContactLandtag()
{
    if(contactLandtagShow==false) 
    {
        document.getElementById("contactLandtag").style.display = 'block';
        contactLandtagShow = true;
    } 
     else
    {
        document.getElementById("contactLandtag").style.display = 'none';
        contactLandtagShow = false;        
    }
}


function showHideContactSchwedt()
{
    if(contactSchwedtShow==false) 
    {
        document.getElementById("contactSchwedt").style.display = 'block';
        contactSchwedtShow = true;
    } 
     else
    {
        document.getElementById("contactSchwedt").style.display = 'none';
        contactSchwedtShow = false;        
    }
}