﻿// JScript File
 
function zoeken ()
{
    parent.location = 'http://www.isatronick.be/' + getTaal() + '/' + 'search.aspx?s=' + document.getElementById('txtZoeken').value;   
}

function zoeken2 ()
{
    parent.location = 'http://www.isatronick.be/' + getTaal() + '/' + 'search.aspx?s=' + document.getElementById('txtZoeken2').value;
}

function mail ()
{
    parent.location = 'http://www.isatronick.be/' + getTaal() + '/' + 'mail.aspx?v=' + document.getElementById('txtNieuwsbrief').value;
}

function getTaal() {
    var sUrl = window.location.href;
    if (sUrl.indexOf("nl") != -1){
        return "nl";
    }
    if (sUrl.indexOf("fr") != -1){
        return "fr";
    }
    return "nl";
}
