// JavaScript Document
function TuringMachine(n)
{
	arrPool = new Array("A","B","C","D","E","F","G","H","I","J","K","L","2","3","4","5","6","7","8","9")
	strPhrase = ""	
	for (i=0; i < n; i++) 	
	{	
	elem = Math.floor(Math.random() * arrPool.length)	
	strPhrase += arrPool[elem]
	}
	return strPhrase
}

var TuringPhrase = TuringMachine(6)
document.getElementById("myCaptcha").firstChild.data = TuringPhrase


