var scrollCounter = 0;
var scrollText = "» Gartenstadt-Hotel, your hotel in Ludwigshafen «";
var scrollDelay = 70;
var i = 0;
while (i ++ < 140)
scrollText = " " + scrollText;

function Scroller()
{
window.status = scrollText.substring(scrollCounter++,
scrollText.length);
if (scrollCounter == scrollText.length)
scrollCounter = 0;
setTimeout("Scroller()", scrollDelay);
}
Scroller();


function Bildwechsel (Bildnr, Bildobjekt) {
	  document.images[Bildnr].src = Bildobjekt;
}


function email(name, domain, suffix, text)
{
   var address = name + "\u0040" + domain + "." + suffix;
   var url = "mailto:" + address;

   if( ! text )
   {
      text = address;
   }

   document.write("<a href=\"" + url + "\">" + text + "</a>");
}


<!--
function openPopUp (GrafikURL,width,height,FText) {
  if (!width) width = 400;
  if (!height) height = 520;

  Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

  popUpWindow=window.open("", "", Fensteroptionen + ',width=' + width+ ',height=' + height);
  popUpWindow.moveTo((screen.availWidth-width)/2,(screen.availHeight-height)/2);
  popUpWindow.focus();
	popUpWindow.document.open();
	with(popUpWindow)
	{
		document.write("<html><head>");
		document.write("<title>" + FText + "</title>");
		document.write('<script language="Javascript">');
document.write("var a=0;");
document.write("function click()" );

document.write("{ if (event.button==2)");
document.write("{ alarm(); } }");

document.write("function alarm()");
document.write("{ if (a==0)");
document.write('        {alert("not with the right mouse button!");a=1;}');
document.write("else if(a==1)");
document.write('             {alert("I said not with the right mouse button!");a=2;}');
document.write("else if(a==2)");
document.write("             {ende1()} }");
document.write("function ende1() {");
document.write('alert("You wanted it in such a way");');
document.write("window.close();a=0; }");
document.write("</script>");

		document.write("</head>");

document.write('<script language="Javascript">');
document.write("document.onmousedown=click");
document.write("</script>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\"    title=\"click to close\">");
		document.write("</body></html>");
	}
}

//-->




