<!-- START

function show(what)
{
	
	var pop = document.getElementById("pop");
	
	if (what == 'on')
	{
		pop.style.visibility="visible";
	}
	else
	{
		pop.style.visibility="hidden";
	}

}
function moshava(to)
{

window.open(to,"_self");

}
-->
