/// Bildwechsel für Titelseite


function turnOn(imageName) 
{
  if (document.images) 
	{
    document[imageName].src = eval(imageName + "on.src");
	}
}
function turnOff(imageName) 
{
  if (document.images) 
	{
	if(imageName!=actual)
	{
    document[imageName].src = eval(imageName + "off.src");
	}
	}
}

function pagelink (ref, page)
{
	document.open('<a href="' + ref +'/'+page+'.html"></a>');

}

