/*

	marcel_192002@yahoo.com
	
*/

function dex(input_char,hidden_char) {
		
		document.getElementById("word").value = document.getElementById("word").value + input_char;
		document.getElementById("word").focus();
		document.getElementById("hidden_word").value = document.getElementById("hidden_word").value + hidden_char;
		//onclick=showResult(document.getElementById("hidden_word").value);
		//alert(document.getElementById("hidden_word").value);
		
		
}


function clear() {
		document.getElementById("word").value='';
		document.getElementById("word").focus();
		document.getElementById("hidden_word").value='';
		//onclick=showResult('');
}
