
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Site Library  /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Site Library:	functies die door de voorkant van deze site worden gebruikt. /////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

//highlight van images
function ImgChange(wiID) {
	if (document.images['menu' + wiID].src == eval('menuoff' + wiID + '.src')){
		document.images['menu' + wiID].src = eval('menuon' + wiID + '.src');
	} else {
		document.images['menu' + wiID].src = eval('menuoff' + wiID + '.src');
	}
}

function showBodyHeight()
{
	alert(document.body.scrollHeight);
}

function showWindowHeight()
{
	alert(document.documentElement.scrollHeight);
}

function showScroll()
{
	if (document.body.scrollHeight > document.documentElement.scrollHeight) {
		return true;
	} else {
		return false;
	}
}
