function openwindow(url,nimi,par){
	window.open(url,nimi,par)
 }

function showAndHide(theId)
{
   var el = document.getElementById(theId)

   if (el.style.display=="none")
   {
      el.style.display="block"; //show element
   }
   else
   {
      el.style.display="none"; //hide element
   }
}


function puhelin(theId)
{
var el1 = document.getElementById("puhelin")
var el2 = document.getElementById("puhelin2")
	if (theId == "puhelin")
	{
	el1.style.display="block";
	el2.style.display="block";
	}
	else
	{
	el1.style.display="none";
	el2.style.display="none";
	}
	
}