<!-- 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) && (document.getElementById || document.all || document.layers))
		{	return true;}
		else
		{	return false;}}
		
		
	function dhtmlObj(id)
	{ if (document.getElementById)
		{	return document.getElementById(id);}
		else if (document.all)
		{	return document.all[id];}
		else if (document.layers)
		{	return document.layers[id];}
		else
		{ return null;}}
		

	function dhtmlObjTwo(id1,id2)
	{ if (document.getElementById)
		{	return document.getElementById(id2);}
		else if (document.all)
		{	return document.all[id2];}
		else if (document.layers)
		{	return document.layers[id1].layers[id2];}
		else
		{	return null;}}
					
		
	function dhtmlStyle(id)
	{	if (document.getElementById || document.all)
		{	return dhtmlObj(id).style;}
		else if (document.layers)
		{ return dhtmlObj(id);}
		else
		{ return null;}}

		
	function dhtmlStyleTwo(id1,id2)
	{	if (document.getElementById || document.all)
		{	return dhtmlObjTwo(id1,id2).style;}
		else if (document.layers)
		{ return dhtmlObjTwo(id1,id2);}
		else
		{ return null;}}
		
				
// 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 (document.getElementById || document.layers)
			{	return dhtmlStyle(id).left;}
			else
			{	return dhtmlStyle(id).posLeft;}}}

			
	function dhtmlgetY(id)
	{	if (dhtmlSupport())
		{	if (document.getElementById || document.layers)
			{	return dhtmlStyle(id).top;}
			else
			{	return dhtmlStyle(id).posTop;}}}
			
	
	function dhtmlsetX(id, n)
	{	if (dhtmlSupport())
		{	if (document.getElementById)
			{ dhtmlStyle(id).left = n+"px";}
			else if (document.all)
			{ dhtmlStyle(id).posLeft = n+"px";}		
			else if (document.layers)
			{	dhtmlStyle(id).left = n;}}}


	function dhtmlsetY(id, n)
	{	if (dhtmlSupport())
		{	if (document.getElementById)
			{ dhtmlStyle(id).top = n+"px";}
			else if (document.all)
			{	dhtmlStyle(id).posTop = n+"px";}
			else if (document.layers)
			{	dhtmlStyle(id).top = n;}}}

				
	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 (document.layers)
			{	document.layers[id].document.open();
			  document.layers[id].document.write(text);
			  document.layers[id].document.close();}}}

		
// stop hiding -->	
		
