var allowSmallSearch = true;
function CatchEnter(e) { 
	if (e && e.keyCode==13)
	{
    return GotoSearch();
   }
  else
  {
    return true;
   }
}
function GotoSearch() { 
	//if ( !allowSmallSearch ) return;
	
	allowSmallSearch = false;
	
	if (document.getElementById( "searchfield" ).value != '') { 
		var s= '/SearchResult.aspx?advanced=1&searchString=' + document.getElementById( "searchfield" ).value;
		var now = new Date();
		var day;
		var month;
		if (now.getDate() < 10)
			day = '0' + now.getDate();
		else
			day = now.getDate();
		if ((now.getMonth()+1) < 10)
			month = '0' + (now.getMonth()+1);
		else
			month = now.getMonth() + 1;
		var today = '' + day + month + now.getFullYear();
		s = s + '&findExact=0&tekstIn=1&Sectie=ALL&dateSelected=0&dateSelectedFrom='+today+'&dateSelectedUntil='+ today;
		location.href = s; 
	} else {
		location.href= websiteFolder + 'SearchResult.aspx';
		return;
	}
} 