//<![CDATA[// <!-- hides any escape codes in the JavaScript -->
google.load('search', '1'); // loads Google Search library, v 1 
// call this function when the browser loads the google lib.
google.setOnLoadCallback(function()
{
// get a custom search control & keep it in cseControl 
// note: put your own custom search ID number here
var cseControl = new google.search.CustomSearchControl('017212383765247846517:cpttkg7q7u4');
// open pages from search results clicks on the same page
cseControl.setLinkTarget(google.search.Search.LINK_TARGET_SELF);
// shows a small nummer of results on each page
cseControl.setResultSetSize(google.search.Search.SMALL_RESULTSET);
// when there are no matches, explain why
cseControl.setNoResultsString
("Sorry, er zijn geen resultaten gevonden die voldoen aan de gezochte woorden.");
// make the search field visible in div with ID 'cseDiv' 
cseControl.draw('cseDiv');
}, true);// end of block setOnLoadCallback 
//]]>