/*
**  Osterhagen + Schuldt Internet GbR       Telefon  +49 4231 9566281
**  Stumpeallee 2  --  D-27283 Verden       Telefax  +49 4231 9566362
**
**       ... im Internet unter http://www.osterhagen.net
*/


if (top.frames.length > 0)
{
	top.location.href = self.location;
}

if (document.images)
{
	buttonon = new Image(25,20);
	buttonon.src = "resource/navigation-on.gif";
	buttonoff = new Image(25,20);
	buttonoff.src = "resource/navigation-off.gif";
}

function activate(image)
{
	if (document.images) 
	{
		document [image].src = buttonon.src;
	} 
}

function deactivate(image)
{
	if (document.images) 
	{
		document [image].src = buttonoff.src;
	}
}