function toolein(a){

for(i=1; i <= 10; i++){
try{document.getElementById('t'+i).style.display = 'none';}catch(err){}
}
	document.getElementById(a).style.display = 'block';
}


function toolaus(a){
	document.getElementById(a).style.display = 'none';
}