	//html start für popups
	pophtmlstart="<html><head><title>TOURINFO</title><style type='text/css'>body,td{font-family:Helvetica,Arial;font-size:11px;}</style></head><body>";
	pophtmlende="</body></html>";
	// html start für divs
	htmlstart="<table cellpadding=4 cellspacing=0 border=0 height='100%' width=104><tr height='100%' ><td valign=top>";
	htmlmitte="</td></tr><tr height=10><td align=right valign=bottom>";
	htmlende="</td></tr></table>";
	// array zum speichern des Drehzustands
	boxdivs = new Array();
	for(i=0;i<10;i++)boxdivs[i]=0;
	boxcont=new Array();
	// Drehfunktion
	function drehmich(wen,dreh)
		{			
		if(document.getElementById)
			{
			dd=document.getElementById("box"+wen);
			ll=false;
			}
		else if(document.all)
			{
			dd=document.all["box"+wen];
			ll=false;
			}
		else if(document.layers)
			{
			ll=document.content.document.layers["box"+wen].document;
			//ll=document.layers["content"].document;
			dd=false;
			}
		else dd = false;
		//los gehts
		if(dd || ll)
			{
			if(dd)dd.innerHTML="\n"+boxcont[wen][dreh]+"\n";
			// fuer layer (NS >4.5 < 6)
			else 
				{
				ll.open();
				ll.write(boxcont[wen][dreh]);
				ll.close();
				}
			}
		else
			{
			infowin=window.open('','informant','width=120,height=120,status=0,location=0,directories=0,scrolling=0,toolbar=0,resizable=0');
			infowin.document.write(pophtmlstart+htmlstart+boxcont[wen][0]+pophtmlende);
			infowin.focus();
			}
		}
