var inputname;
var stype;
var searchstring = getURLParam('search');
var action = 'index.php?id=250&amp;no_cache=1';
if (searchstring) {
    $('search_string').setProperty('value', searchstring)
}
var stype = getURLParam('stype');
if (stype == 'stocksearch') {
    stype = 'stocksearch';
    inputname = 'searchString.text';
    action = 'index.php?id=250&amp;no_cache=1';
    $('stocksearch').setProperty('checked', 'checked')
}
if (stype == 'websearch') {
    stype = 'websearch';
    inputname = 'tx_indexedsearch[sword]';
    action = 'index.php?id=216&amp;no_cache=1';
    $('websearch').setProperty('checked', 'checked')
}
if (stype == 'helpsearch') {
    stype = 'helpsearch';
    inputname = 'tx_bgmfaq_pi1[swords]';
    action = 'index.php?id=248&amp;no_cache=1';
    $('helpsearch').setProperty('checked', 'checked')
}
window.addEvent('domready', function () {
    $('stocksearch').addEvent("click", function (event) {
        stype = 'stocksearch';
        inputname = 'searchString.text';
        action = 'index.php?id=250&amp;no_cache=1'
    });
    $('websearch').addEvent("click", function (event) {
        stype = 'websearch';
        inputname = 'tx_indexedsearch[sword]';
        action = 'index.php?id=216&amp;no_cache=1'
    });
    $('helpsearch').addEvent("click", function (event) {
        stype = 'helpsearch';
        inputname = 'tx_bgmfaq_pi1[swords]';
        action = 'index.php?id=248&amp;no_cache=1'
    });
    $('search').addEvent("submit", function (event) {
        if ( $('stocksearch').checked ) {
            //alert('true');
            stype = 'stocksearch';
            inputname = 'searchString.text';
            action = 'index.php?id=250&amp;no_cache=1';
        }
        $('search_string').setProperty('name', inputname);
        searchstring = $('search_string').getProperty('value');
        $('search').setProperty('action', action + '&search=' + escape(searchstring) + '&stype=' + stype)
    })
    
    
});
