document.write('<script src="http://www.google.com/jsapi" type="text/javascript"></script>');
function drawGoogleCustomSearch(id, resultSetSize)
{
    document.write('<div id="cse" style="width: 100%;">Loading</div>');
    google.load('search', '1', {language : 'ja'});
    google.setOnLoadCallback(
        function()
        {
            var customSearchControl = new google.search.CustomSearchControl('013472284885773573654:' + id);
            customSearchControl.setResultSetSize(resultSetSize || google.search.Search.FILTERED_CSE_RESULTSET);
            customSearchControl.draw('cse');
        },
        true
    );
    document.write('<link rel="stylesheet" href="http://www.google.com/cse/style/look/minimalist.css" type="text/css" />');
}

