﻿function launchSearch(objSearchBox)
{
    window.location.href="/search?cx=009096020989677304441%3Akkzh0x3f3yc&cof=FORID%3A9&ie=UTF-8&q=" + document.getElementById(objSearchBox).value + " more:recipes"; 
}

function checkEnter(e,objSearchBox)
{ 
    var iAscii;
    if (window.event)
        iAscii = window.event.keyCode;
    else if (e)
        iAscii = e.which;

    if (iAscii == 13)
    {
        launchSearch(objSearchBox);
        return false;
    }
}
