// JavaScript EframeSet.js    Load page into frameset
// Malibu Software (c)2003

function CheckFrame() 
{
	if (parent.frames.length == 0) {
		curUrl = parent.location.href;
		index = curUrl.lastIndexOf("malibusoftware")+15;
		path = curUrl.substring(index, curUrl.length);
		parent.location.href = 'http://home.zonnet.nl/malibusoftware/Eframeset.htm?'+path; // load requested page in frameset
	}
}

