     function AddBookmark()
    {
     title = "Janneke's Recepten Pagina";
     url = "http://www.jannekes.nl";

 	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;
 	}
	else
	if(window.chrome)
	{
 		return yes;
	}
	}

   function showLink(id)  {
   document.getElementById(id).style.display = "block";
   }
   function hideLink(id)  {
   document.getElementById(id).style.display = "none";
   }
        function loadBigImage(receptid) {
            document.getElementById("receptimg").src = receptid;
            document.getElementById("img").style.visibility = "visible";
	}
        function unloadBigImage() {
            document.getElementById("receptimg").src = "x.gif";
            document.getElementById("img").style.visibility = "hidden";
        }



