<!-- hide script
//	all contents on this site							--
//	are copyright (c) 1998-2007 by				--
//	http://www.art-emission.com					 	--
//	of Switzerland, all rights reserved		--

// Funktionen fuer start (index.html)

	

// Background einschalten

function setBackgroundImg(backgrID, newImage)
{
	if (document.getElementById)
	{
		// this is the way the standards work
		var style2 = document.getElementById(backgrID).style;
		style2.backgroundImage ="url("+newImage+")";
	}
	else if (document.all)
	{
		// this is the way old msie versions work
		var style2 = document.all[backgrID].style;
		style2.backgroundImage ="url("+newImage+")";
	}
	else if (document.layers)
	{
		// this is the way nn4 works
		//var style2 = document.layers[backgrID].style;
		//style2.backgroundImage ="url("+newImage+")";
	}
}		



// stop hiding -->	
		
