if ((self.name != 'text') && (self.location.protocol != 'file:'))
{
	if (document.domain == 'localhost')
	{
		self.location = '/index.html?page=' + self.location.pathname;
	}
	else
	{
		if (document.domain == 'www.pemoco.nl')
		{
			self.location = '/index.html?page=' + self.location.pathname;
		}
		else
		{
			if (document.domain == 'www.xs4all.nl')
			{
				self.location = '/~trigger/index.html?page=' + self.location.pathname;
			}
		}
	}
}

