function CreateBookmarkLink() 
{

 title = "אינדקס/בר מצווה/בת מצוה /אטרקציות"; 
 url = "http://www.barbatmizva.co.il";
	if (window.sidebar) 
	{ // Mozilla Firefox Bookmark
		window.sidebar.addPanel(title, url,"");
	}
	 else if( window.external ) 
	 { // IE Favorite
		window.external.AddFavorite( url, title); 
	 }
	else if(window.opera && window.print) 
	{ // Opera Hotlist
		return true; 
	}
}
function toggleimages(img)
{
	if (img==0)
		return;
	else
	{
		imgsrc = "uploads/" + img;
		document.getElementById("img_1").src=imgsrc
	}
}
function toggle(tid)
{
	if (document.getElementById("c_"  + tid).style.display=='') 
	{
		document.getElementById("c_"  + tid).style.display='none';
	}
	else 
	{
		document.getElementById("c_"  + tid).style.display='';
	}
}

function toggle_answer(tid)
{
	if (document.getElementById("answer_"  + tid).style.display=='') 
	{
		document.getElementById("answer_"  + tid).style.display='none';
	}
	else 
	{
		document.getElementById("answer_"  + tid).style.display='';
	}
}