///////////////////////////////////////////////
// Copyright 2007 RiMedia. All rights reserved
///////////////////////////////////////////////

////////////////////
// Don't get framed
////////////////////

function avoid_frames() {if (window != window.top) {top.location.href = location.href;}}
avoid_frames();

////////////////////
// Bookmark
////////////////////

function voeg_toe_aan_favorieten(lbl, url) {
if (window.sidebar) {window.sidebar.addPanel(lbl, url, '');}
else if (document.all) {window.external.AddFavorite(url, lbl);}
return false;
}

////////////////////
// Set as HomePage
////////////////////

function maak_startpagina(url) {
if (document.all) {
 document.getElementById('homepage_link').style.behavior='url(#default#homepage)';
 document.getElementById('homepage_link').setHomePage(url);
 window.location.href=window.location.href;
}
else {
 try {
  netscape.security.PrivilegeManager.enablePrivilege('UniversalPreferencesWrite');
  navigator.preference('browser.startup.homepage', url);
 }
 catch (e) {
	alert('De startpagina kon niet gezet worden');
 }
}
return false;
}
