// ========== Site Variables ====================
var zTopPage		= 'index.html';
var zMenuPage		= 'menu.html';
var zDefaultPage	= 'home.html';
var zMenuFrame		= 'menu';
var zDefaultFrame	= 'inhoud';
var zPageSeperator	= 'page=';
// ========== Einde Site Variables ==============


// ========== Top Frame Code =======================
function zBreakFrames()
	{
	if (window != top)
		top.location.replace(location);
	}

function zLoadPageInFrames()
	{
	var url = top.location.search.substr(1);
	var idx = url.indexOf(zPageSeperator);
	if (idx != -1)
		{
		var page = url.substr(idx + zPageSeperator.length);
		if (page != '' && typeof(frames[zDefaultFrame]) != 'undefined')
			{
			frames[zDefaultFrame].location.replace(page);
			}
		}
	}
