function SearchSiteEvent(event) {
    if (event.keyCode == 13) {
        a = document.URL;
        b = a.substr(27,2);
        if (b == "fr") {
            document.location.href = 'http://www.swissolympic.ch/fr/desktopdefault.aspx/tabid-4012?cx=012918449971239707815:vugv3uggqjk&cof=FORID:11&ie=UTF-8&q=' +
            document.getElementById('q').value + '&sa=<b style="color:black;background-color:#ff66ff">Search</b>';
        }
        else {
            document.location.href = 'http://www.swissolympic.ch/desktopdefault.aspx/tabid-4012?cx=012918449971239707815:vugv3uggqjk&cof=FORID:11&ie=UTF-8&q=' +
            document.getElementById('q').value + '&sa=<b style="color:black;background-color:#ff66ff">Search</b>';
        }
    }
}

function SearchSite() {
    a = document.URL;
    b = a.substr(27, 2);
    if (b == "fr") {
        document.location.href = 'http://www.swissolympic.ch/fr/desktopdefault.aspx/tabid-4012?cx=012918449971239707815:vugv3uggqjk&cof=FORID:11&ie=UTF-8&q=' +
            document.getElementById('q').value + '&sa=<b style="color:black;background-color:#ff66ff">Search</b>';
    }
    else {
        document.location.href = 'http://www.swissolympic.ch/desktopdefault.aspx/tabid-4012?cx=012918449971239707815:vugv3uggqjk&cof=FORID:11&ie=UTF-8&q=' +
            document.getElementById('q').value + '&sa=<b style="color:black;background-color:#ff66ff">Search</b>';
    }
}

function hideWatermark(theID) {
    var element = document.getElementById(theID);
    element.style.backgroundImage = 'none';
    element.style.backgroundColor = 'white';
}
    
function showWatermark(theID) {
    var element = document.getElementById(theID);
    if (element.value.length == 0)
        element.style.backgroundImage = 'url("http://www.google.com/cse/intl/de-CH/images/google_custom_search_watermark.gif")';
    else
        element.style.backgroundColor = 'white';
}
