<!-- hide script
//	all contents on this site							--
//	are copyright (c) 1998-2005 by				--
//	http://www.art-emission.com					 	--
//	of Switzerland, all rights reserved		--

// Funktionen fuer DHTML

	function dhtmlSupport()
	{	if ((browserOk) && ((dhtmlNavig==true) || document.getElementById || document.all || document.layers))
		{	return true;}
		else
		{	return false;}}
		
		
	function dhtmlObj(id)
	{ if ((dhtmlNavig==true) || (document.layers))
		{	return document.layers[id];}
		else
		{	if (document.all)
			{	return document.all[id];}
			else
			{	 if (document.getElementById)
				{	return document.getElementById(id);}}}}

	function dhtmlObjTwo(id1,id2)
	{ if ((dhtmlNavig==true) || (document.layers))
		{	return document.layers[id1].layers[id2];}
		else
		{	if (document.all)
			{	return document.all[id2];}
			else
			{	 if (document.getElementById)
				{	return document.getElementById(id2);}}}}
					
		
	function dhtmlStyle(id)
	{	if ((dhtmlNavig==true) || (document.layers))
		{ return dhtmlObj(id);}
		else
		{	if (document.getElementById || document.all)
			{	return dhtmlObj(id).style;}}}

	function dhtmlStyleTwo(id1,id2)
	{	if ((dhtmlNavig==true) || (document.layers))
		{ return dhtmlObjTwo(id1,id2);}
		else
		{	if (document.getElementById || document.all)
			{	return dhtmlObjTwo(id1,id2).style;}}}
				
// Haupt-Funktionen fuer DHTML

	function dhtmlHide(id)
	{	if (dhtmlSupport())
		{	dhtmlStyle(id).visibility = "hidden";}}

		
	function dhtmlShow(id)
	{	if (dhtmlSupport())
		{	dhtmlStyle(id).visibility = "visible";}}

	// Bei Netscape4 muessen bei verschachtelten Objekten alle Objekte 
	// angegeben werden
	function dhtmlHideTwo(id1,id2)
	{	if (dhtmlSupport())
		{	dhtmlStyleTwo(id1,id2).visibility = "hidden";}}

	function dhtmlShowTwo(id1,id2)
	{	if (dhtmlSupport())
		{	dhtmlStyleTwo(id1,id2).visibility = "visible";}}

			
	function dhtmlgetX(id)
	{	if (dhtmlSupport())
		{	if ((dhtmlNavig==true) || document.getElementById || document.layers)
			{	return dhtmlStyle(id).left;}
			else
			{	return dhtmlStyle(id).posLeft;}}}

			
	function dhtmlgetY(id)
	{	if (dhtmlSupport())
		{	if ((dhtmlNavig==true) || document.getElementById || document.layers)
			{	return dhtmlStyle(id).top;}
			else
			{	return dhtmlStyle(id).posTop;}}}
			
	
	function dhtmlsetX(id, n)
	{	if (dhtmlSupport())
		{	if ((dhtmlNavig==true) || document.layers)
			{	
			dhtmlStyle(id).left = n;
			}
			else
			{ if (document.getElementById)
				{ dhtmlStyle(id).left = n+"px";}
				else
				{	dhtmlStyle(id).posLeft = n+"px";}}}}


	function dhtmlsetY(id, n)
	{	if (dhtmlSupport())
		{	if ((dhtmlNavig==true) || document.layers)
			{	dhtmlStyle(id).top = n;}
			else
			{ if (document.getElementById)
				{ dhtmlStyle(id).top = n+"px";}
				else
				{	dhtmlStyle(id).posTop = n+"px";}}}}

				
	function dhtmlMoveTo(id, x, y)
	{	if (dhtmlSupport())
		{	dhtmlsetX(id, x);	
			dhtmlsetY(id, y);}}
		
		
	function dhtmlText(id,text)
	{	if (dhtmlSupport())
		{	if (document.getElementById)
			{	dhtmlObj(id).innerHTML = text;}
			else
			{	if (document.all)
				{	dhtmlObj(id).innerHTML = text;}
				else
				{	if ((dhtmlNavig==true) || document.layers)
					{	document.layers[id].document.open();
					  document.layers[id].document.write(text);
					  document.layers[id].document.close();}
		}}}}

		
// stop hiding -->	
		
