/*
#########################################################
#
# default javascript settings for the entire site
#
# Copyright:		2000-2010 S-Inside
# Project:			www.huveradvocaten.nl
# Platform:			Javascript
#
#########################################################
*/

// settings for this website
var $nImagePlaceWidth = 0; 						// place holder for big_image, how much from middle op window, default 150;
var $nImagePlaceHeight = 180;					// how much from top of page
var $sHomepage = "index.html";					// where should site go to if loaded in frame
var $nScrollFaceColor = "#006b65";				// colors for scrollbars
var $nScrollArrowColor = "#000000";				// colors for scrollbars
var $nScrollTrackColor = "#a3cdc3";				// colors for scrollbars
var $nScrollShadowColor = "#bababa";			// colors for scrollbars
var $nScrollHighlightColor = "#808080";			// colors for scrollbars
var $nScroll3dlightColor = "#000000";			// colors for scrollbars
var $nScrollDarkshadowColor = "#666464";		// colors for scrollbars
var $nErrorBoxWidth = 500;						// the width of the javascript error box
var $nErrorBoxHeight = 260;						// the height of the javascript error box


// hide the previous shown epmloyee div (all) and show only the requested one
function clearEmployeeDivs ($p_sShowDiv) {
	var $aDivs = document.getElementsByTagName('div')
	var $nCount;
	
	for ($nCount=0; $nCount < $aDivs.length; $nCount++){
		if ($aDivs[$nCount].className == "medewerker") {
			$aDivs[$nCount].style.display = "none";
		}
	} 
	if (document.getElementById($p_sShowDiv)) {
		document.getElementById($p_sShowDiv).style.display = "block";
	}
}