function favorites(url_site,name_site){ 
	if(document.all) {
		window.external.AddFavorite(url_site,name_site);
	}
} 

function sethomepage(url_site){ 
	document.body.style.behavior='url(#default#homepage)';
	document.body.setHomePage(url_site);                          
} 

function openWindow(url, w, h,naam,scrb) {
   	var options = "width=" + w + ",height=" + h + ",left=200,top=100,";
    	options += "resizable=no,scrollbars=" + scrb + ",status=no,";
    	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url, naam, options);
    	newWin.focus();
}

function openWindow2(url, w, h,naam,scrb) {
   	var options = "width=" + w + ",height=" + h + ",left=200,top=100,";
    	options += "resizable=no,scrollbars=" + scrb + ",status=no,";
    	options += "menubar=no,toolbar=no,location=no,directories=no";
	var newWin = window.open(url, naam, options);
    	newWin.focus();
}

// mouseover functions
nav_hilite_kop_color = '#FFF7C6'
			
function nav_menu_hilite(item) {
	item.style.backgroundColor = nav_hilite_kop_color;
	item.style.cursor='hand';
	item.style.color='#000';
}
function nav_menu_unhilite(item,color) {
	item.style.backgroundColor = color
    	item.style.color='';
}

