﻿/*
 * Google Site Search helper
 * Contains an API key SPECIFIC TO MEETINIRELAND.COM!!
 * 
 * [January 2011]
 */

    //
    // function: CheckEventAction()
    //
    function CheckEventAction(a_site, a_Event)
    {
        var l_keyCode = 0;
        // Determine the key pressed, depending on whether window.event or the event object is in use
	    var l_Event = a_Event;
	    if (!a_Event) 
	    {
            l_Event = window.event
	    }
        if (l_Event) 
	    {
            l_keyCode = l_Event.keyCode;
	    }

        // Was the Enter key pressed?
        if (l_keyCode == 13)
        {
            return SubmitSearchForm(a_site);

        } 

        // The event has not been handled, so return true
        return true;        

    }

    //
    // function: SubmitSearchForm()
    //
    function SubmitSearchForm(a_site)
    {
        var l_oURL = '';
        if (a_site == 'localhost')
        {
            l_oURL = '/BusinessTourism/Search-Plan/SiteSearchResults.aspx';
        }
        else if (a_site == 'fr') 
        {
            l_oURL = '/Country-Sites/France/Search-Plan/SiteSearchResults.aspx';
        } 
        else if (a_site == 'de') 
        {
            l_oURL = '/Country-Sites/Germany/suchen-und-planen/SiteSearchResults.aspx';
        } 
        else if (a_site == 'it') 
        {
            l_oURL = '/Country-Sites/Italy/Search-Plan/SiteSearchResults.aspx';
        } 
        else if (a_site == 'es') 
        {
            l_oURL = '/Country-Sites/Spain/Search-Plan/SiteSearchResults.aspx';
        } 
        else if (a_site == 'ambassador') 
        {
            l_oURL = '/Ambassador/Search-Plan/SiteSearchResults.aspx';
        } 
        else if (a_site == 'trade') 
        {
            l_oURL = '/Trade/Search-Plan/SiteSearchResults.aspx';
        } 
        else // default is english
        {
            l_oURL = '/Search-Plan/SiteSearchResults.aspx';
        }
        
        l_oURL = l_oURL + '?cx=000898416952315929038:qvzpxq_s3lg&cof=FORID:11;NB:1&q=' + document.getElementById('SearchKeyword').value;
        document.location = l_oURL;
        return false;
    }

