// JavaScript Document
function addbookmark()
{
bookmarkurl="http://www.datingwebsites.nl/"
bookmarktitle="Reviews over DatingWebsites"
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}




function toggle_visibility(hideme)
{
	var e = document.getElementById(hideme);
	if(e.style.display == 'block')
		e.style.display = 'none';
	else
		e.style.display = 'block';
}


