/**
 *	We need to make sure that automated bot's can figure this page out. 
 *
 *	To that extend we add a random number to the page, add it to the 
 *	users session, and make sure it validates. The input field is not
 *	located on the page either, so this will give any bot a serious run
 *	for his money.
 *
 *	If you are reading this trying to figure out why your bot does not
 *	work: good luck! Let me know if you figure it out! ;)
**/
function addBotCheck () {
	var	inputField		=	document.createElement('input');
	inputField.name		=	'botCheck';
	inputField.value	=	$('randomNumber').value;
	$('botDiv').appendChild(inputField);
}