/*
by Leo Charre & Jesse Fergusson
Internet Connection  2004 2005 ©
www.internetconnection.net
*/

//show OR hide funtion depends on if element is shown or hidden
function shoh(id) { 
	
	if (document.getElementById) { // DOM3 = IE5, NS6
		if (document.getElementById(id).style.display == "none"){
			document.getElementById(id).style.display = 'block';
			document.getElementById('prepinac').innerHTML = "Skryť detaily";
		} else {
			document.getElementById(id).style.display = 'none';
			document.getElementById('prepinac').innerHTML = "Zobraziť detaily internetových služieb";
		}	
	} else { 
		if (document.layers) {	
			if (document.id.display == "none"){
				document.id.display = 'block';
				document.prepinac.innerHTML = "Skryť detaily";
			} else {
				document.id.display = 'none';
				document.prepinac.innerHTML = "Zobraziť detaily internetových služieb";
			}
		} else {
			if (document.all.id.style.visibility == "none"){
				document.all.id.style.display = 'block';
				document.all.prepinac.innerHTML = "Skryť detaily";
			} else {
				document.all.id.style.display = 'none';
				document.all.prepinac.innerHTML = "Zobraziť detaily internetových služieb";
			}
		}
	}
}

