function invoerveld() {

	this.maakAktief = function(veldnaam) {

		//This is IE or Opera 
		if (document.all) { 
		  if (typeof document.all[veldnaam] == 'object')
		  {
			  document.all[veldnaam].focus()
		  } 
		} 
		//This is Mozilla 
		else {
			if (typeof document.getElementById(veldnaam) == 'object') {
			  document.getElementById(veldnaam).focus();
		  }
		} 

	}
}
