var the_main_menu = "";
var delayed_menu = "";
var menu_time_count = 0;

function menu_show2 (id) {
        if (document && document.getElementById(id)) {
                delayed_menu = "";
                if (the_main_menu != "" && the_main_menu != id) {
                        document.getElementById(the_main_menu).style.visibility = "hidden";
                        the_main_menu = "";
                }

                if (the_main_menu == "" && the_main_menu != id) {
                        the_main_menu = id;
                }

                document.getElementById(id).style.visibility = "visible";
        }
}

function menu_hide_delay2 () {
        if (the_main_menu != "") {
                menu_time_count++;
                delayed_menu = the_main_menu;
                setTimeout("menu_hide_delayexe2(" + menu_time_count + ")", 2000);
        }
}

function menu_hide_delayexe2 (sema) {
        if (the_main_menu != "" && delayed_menu == the_main_menu && menu_time_count == sema) {

                if (document) {

                if (document.getElementById(the_main_menu))
                        document.getElementById(the_main_menu).style.visibility = "hidden";

                the_main_menu = "";
                }
        }
}

function goBack()
{
  history.back();
}

function tint (id) {
        document.getElementById(id).style.backgroundColor = '#FFDAFF';
}

function untint (id) {
        document.getElementById(id).style.backgroundColor = '';
}

function tellFriends() {
window.location = "mailto:?subject=Quinta Azenha do Ramalho&body=Here is a link to a page you might find interesting: "+window.location
}

function addToFavorites() { if (window.external) { window.external.AddFavorite("http://www.azenhadoramalho.com","Azenha do Ramalho, self catering Quinta, Portugal")
} else { alert("Sorry! Your browser doesn't support this function.");
} }

function tellFriendsCar() {
window.location = "mailto:?subject=VW Golf and Landrover Freelander for sale&body=Here is a link to a page you might find interesting: "+window.location
}

function addToFavoritesCar() { if (window.external) { window.external.AddFavorite("http://www.azenhadoramalho.com/golf.htm","VW Golf and Landrover Freelander for sale")
} else { alert("Sorry! Your browser doesn't support this function.");
} }

