	function checkname(){
	var yourname = document.findplayer.playersearch.value.toLowerCase();

	if (yourname=='almar'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/almar1.php';
	}//ends IF

	else if (yourname=='coen' || yourname=='coendert'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/coen1.php';
	}//ends ELSE IF

	else if (yourname=='davy' || yourname=='dave'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/davy1.php';
	}//ends ELSE IF

	else if (yourname=='merijn'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/merijn1.php';
	}//ends ELSE IF

	else if (yourname=='joost'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/joost1.php';
	}//ends ELSE IF

	else if (yourname=='jasper'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/jasper1.php';
	}//ends ELSE IF

	else if (yourname=='arjan'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/arjan1.php';
	}//ends ELSE IF

	else if (yourname=='anton'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/anton1.php';
	}//ends ELSE IF

	else if (yourname=='niels'){
		window.top.location = 'http://www.ltcmaasdam.nl/maasdam2/niels1.php';
	}//ends ELSE IF

	else {
		alert('Sorry, no player with that name in database.');
	}//ends ELSE

	}//ends function
