﻿function GoTo(section, language) {
    var res = '/';

    if (language == 'it') {
        if (section == 'chi-siamo') {
            res = host + language + '/azienda/' + section;
        }
        if (section == 'terra' || section == 'aereo' || section == 'mare') {
            res = host + language + '/servizi/' + section + '/nazioni';
        }
        if (section == 'rfid') {
            res = host + language + '/tecnologia/' + section;
        }
    }
    if (language == 'en') {
        if (section == 'about-us') {
            res = host + language + '/company/' + section;
        }
        if (section == 'earth' || section == 'air' || section == 'sea') {
            res = host + language + '/services/' + section + '/countries';
        }
        if (section == 'rfid') {
            res = host + language + '/technology/' + section;
        }
    }
    if (language == 'fi') {
        if (section == 'yritysesittely') {
            res = host + language + '/company/' + section;
        }
        if (section == 'maantiekuljetukset' || section == 'lentorahti' || section == 'merikuljetukset') {
            res = host + language + '/services/' + section + '/countries';
        }
        if (section == 'rfid') {
            res = host + language + '/technology/' + section;
        }
    }
    document.location.href = res;
}
