﻿function showDiv(obj) {
        hideDiv();
        document.getElementById(obj).style.visibility = "visible";
    }

function showDiv2(obj) {
        document.getElementById(obj).style.visibility = "visible";
    }
    
            
function hideDiv() {
        document.getElementById("hotel").style.visibility = "hidden";
        document.getElementById("iris").style.visibility = "hidden";
            }

function changeAction() {

    if ( document.getElementById("Betrieb").value == "Simpaty" ) {
        document.getElementById("Anfrageform").action='http://www.dobbiaco.org/hotel-simpaty/de/anfrage-hotel-simpaty-toblach-dobbiaco.asp';
        document.getElementById("Anfrageform").target='_blank';
    } else if ( document.getElementById("Betrieb").value == "Iris" ) {
        document.getElementById("Anfrageform").action='/de/appartement-kontakt-villa-iris-toblach.asp';
        document.getElementById("Anfrageform").target='_self';
    } else {
        document.getElementById("Anfrageform").action='/de/index-kontakt-hotel-sonne-toblach.asp';
        document.getElementById("Anfrageform").target='_self';
    }
}

function changeActionIt() {

    if ( document.getElementById("Betrieb").value == "Simpaty" ) {
        document.getElementById("Anfrageform").action='http://www.dobbiaco.org/hotel-simpaty/it/anfrage-hotel-simpaty-toblach-dobbiaco.asp';
        document.getElementById("Anfrageform").target='_blank';
    } else if ( document.getElementById("Betrieb").value == "Iris" ) {
        document.getElementById("Anfrageform").action='/it/appartamento-contatto-villa-iris-dobbiaco.asp';
        document.getElementById("Anfrageform").target='_self';
    } else {
        document.getElementById("Anfrageform").action='/it/index-contatto-hotel-sole-dobbiaco.asp';
        document.getElementById("Anfrageform").target='_self';
    }
}

function changeActionEn() {

    if ( document.getElementById("Betrieb").value == "Simpaty" ) {
        document.getElementById("Anfrageform").action='http://www.dobbiaco.org/hotel-simpaty/en/anfrage-hotel-simpaty-toblach-dobbiaco.asp';
        document.getElementById("Anfrageform").target='_blank';
    } else if ( document.getElementById("Betrieb").value == "Iris" ) {
        document.getElementById("Anfrageform").action='/en/apartment-contact-villa-iris-toblach.asp';
        document.getElementById("Anfrageform").target='_self';
    } else {
        document.getElementById("Anfrageform").action='/en/index-contact-hotel-sonne-toblach.asp';
        document.getElementById("Anfrageform").target='_self';
    }
}

