   function show_contact(hodnota)

   {	soubor = hodnota;
			document.getElementById("p1").style.display='none';
			document.getElementById("p2").style.display='none';
			document.getElementById("p3").style.display='none';
			
			document.getElementById("cp1").style.backgroundColor='white';
			document.getElementById("cp2").style.backgroundColor='white';
			document.getElementById("cp3").style.backgroundColor='white';
			
		 document.getElementById(hodnota).style.display='block';

	return soubor;
}