   var RecaptchaOptions = {
	custom_translations : {
			instructions_visual : "Voer de code in:",
			instructions_audio : "Laat de code voorlezen",
			play_again : "Opnieuw afspelen",
			cant_hear_this : "Ik kan dit niet horen",
			visual_challenge : "Laat de code visueel weergeven",
			audio_challenge : "Laat de code voorlezen",
			refresh_btn : "Nieuwe code maken",
			help_btn : "Help",
			incorrect_try_again : "Onjuist. Probeer opnieuw.",
	},
	lang : 'nl',
	theme : 'clean'
 };

//SHOW TEXT
function View(el_id){

var text=document.getElementById(el_id);
	if (text.style.display == "none"){
		text.style.display = "";
	}else{
		text.style.display = "none";
	}
}
window.onload=function(){
window.focus();
}

//END SHOW TEXT
  
  
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-18011138-1']);
  _gaq.push(['_trackPageview']);

  (function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  })();

