google.load('search', '1', {language : 'en'});
    function onLoad() {
        // Create a Custom Search control that uses a 
        // CSE restricted to code.google.com

        // Change the customSearchId string to the ID of your own
        // Custom Search engine.
        var customSearchControl = 
        new google.search.CustomSearchControl('004709718821987832798:k52h0sy9uwy');

        // Set drawing options to use my text box as input
        // instead of having the library create one.
        var drawOptions = new google.search.DrawOptions();
        // drawOptions.setInput(document.getElementById('query_input'));

        // Draw the control in content div
        // customSearchControl.draw('cse', drawOptions);
        customSearchControl.draw('gcs')
    }

    google.setOnLoadCallback(onLoad);
