function showhide(objectname)
	{
	if(document.all[objectname].style.display=='none')
		{
		document.all[objectname].style.display='inline';
		}
		else
		{
		document.all[objectname].style.display='none';
		}
	}
	
function addfav(filename,description)
   {
   if (document.all)
      {
      window.external.AddFavorite ('http://www.tel-aviv-insider.com/'+filename,"Tel Aviv Insider - " + description);
      }
   }

	