function setAsHomePage(obj)
{
	if (confirm("?הפוך לדף הבית")) 
	{
		obj.style.behavior='url(#default#homepage)';
		obj.setHomePage('http://www.tevalife.com');
	}
}	

function check_formTop()
{
	if (document.search_form.q.value.length<2)
	{
		alert("חובה להכניס יותר מתו אחד");
		return false;
		document.search_form.q.focus=true;
	}
	else
	{
		document.search_form.submit();
	}
}

function check_formAdvanced()
{
	if (document.search_advanced.as_q.value.length<2 && document.search_advanced.as_epq.value.length<2 && document.search_advanced.as_oq.value.length<2 && document.search_advanced.as_eq.value.length<2)
	{
		alert("חובה להכניס יותר מתו אחד");
		return false;
		document.search_advanced.as_q.focus=true;
	}
	else
	{
		document.search_advanced.submit();
	}
}

//	Tip 
function iFrameTip(c)
{
	//alert("test");
	if (document.getElementById("topTip").style.display=='none')
	{
		//alert("test1");
		document.getElementById("topTip").style.display='';
	}
	else
	{
		//alert("test2");
		document.getElementById("topTip").style.display='none';
	}
}



