﻿
DefaultFontSize = 11;
CurrentFontSize = 11;

function HighMenu(ObjPanel) {
    ObjPanel.className = "NavItemUp";
}

function DefaultMenu(ObjPanel) {
    ObjPanel.className = "NavItem";
}

function TextResize() {

    ObjContent = document.getElementById("MainContent");
    CurrentFontSize = CurrentFontSize + 4;
    
    if (CurrentFontSize > 24) { CurrentFontSize = DefaultFontSize; }

    ObjContent.style.fontSize = CurrentFontSize;

}

function OpenMail() {

    document.location = "mailto:info@notarisdoorn.nl";

}

function SetMenu() {

    //alert(document.location);
    
    StrCurrentLocation = new String(document.location);
    SelectedItem = "Item1";
    if (StrCurrentLocation.indexOf("/onze-mensen/") > 0) { SelectedItem = "Item2"; }
    if (StrCurrentLocation.indexOf("/rechtsgebieden/") > 0) { SelectedItem = "Item3"; }
    if (StrCurrentLocation.indexOf("/offerte-opvragen/") > 0) { SelectedItem = "Item4"; }
    if (StrCurrentLocation.indexOf("/legalisatie-apostille/") > 0) { SelectedItem = "Item5"; }
    if (StrCurrentLocation.indexOf("/links/") > 0) { SelectedItem = "Item6"; }

    document.getElementById("ctl00_" + SelectedItem).className = "NavItemUp";
    document.getElementById("ctl00_" + SelectedItem).onmouseover = "";
    document.getElementById("ctl00_" + SelectedItem).onmouseout = "";

}