function showtxt(div) {

		document.getElementById(div).style.display='block';

	x = 1;
	y = div.substr(4,1);

	while (x <= 8) {

		if(x != y)

			{

				document.getElementById('serv' + x).style.display='none';

			}

		x++;

	}

}
