function gotoSite(where) 
{   
    var L = where.selectedIndex; 
	if (L == undefined) 
	{} else {
    wohin = where.options[L].value;
	window.location.href = where.options[L].value; return false; 
	}
}

function bookIt() {
	if (document.all)
	    window.external.AddFavorite(window.location, document.title);
	else
	    alert("Sorry. Netscape gebruikers moeten hun bookmarks handmatig toevoegen door <Ctrl-D> in te drukken.");
}