function dosomethinguseful(){ 
	var wch=(Math.floor(Math.random()*14)+1);
	var elem = document.getElementById('ran'+wch);
	
	if( elem != null )
		elem.style.display='inline';
}