	function formSubmit(){
	 var keyword = document.getElementById('keywords_article').value;
	 if(keyword.length<=1){
				alert('Zoekwoorden moeten minimaal uit twee tekens bestaan');
				return false;
			}
	 strURL ="http://www.cursusvoor.nl/zoeken/"+keyword+".html";
	 document.getElementById('search_right').action=strURL;
	}


