

/**********************************************************************************\
|*                                                                                *|
|*   Königstuhl Script Functions                                                  *|
|*                                                                                *|
|*   Copyright by Jan Buss, Mar 2005                                              *|
|*                                                                                *|
\**********************************************************************************/

////////////////////////////////////////////////////////////////////////////////////
//  Tiny pop-ups for quick-info (document's last modified date)
////////////////////////////////////////////////////////////////////////////////////

// builds dynamic last modified date
var tag   = new Array("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31");
var monat = new Array("Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec");
var zeit  = new Array("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59");
modified  = new Date(document.lastModified)
var backcolor = "#153B62";
var fcolor    = "#FFFFFF";
var capcolor  = "#FFFFFF";
var x     = 0;
var y     = 0;
var snow  = 0;
var sw    = 0;
var cnt   = 0;
var dir   = 1;

// main background color (the large area)
if (typeof fcolor == 'undefined') { var fcolor = "#FFFFFF";}

// border color and color of caption
if (typeof backcolor == 'undefined') { var backcolor = "#153B62";}

// text color
if (typeof textcolor == 'undefined') { var textcolor = "#000000";}

// color of the caption text
if (typeof capcolor == 'undefined') { var capcolor = "#FF3300";}

// color of "Close" when using Sticky
if (typeof closecolor == 'undefined') { var closecolor = "#9999FF";}

// width of the popups in pixels
if (typeof width == 'undefined') { var width = "120";}

// how thick the border should be in pixels
if (typeof border == 'undefined') { var border = "1";}

// how many pixels to the right/left of the cursor to show the popup
if (typeof offsetx == 'undefined') { var offsetx = 6;}

// how many pixels to the below the cursor to show the popup
if (typeof offsety == 'undefined') { var offsety = 6;}

ns4 = (document.layers)? true:false
ie4 = (document.all)? true:false

// Microsoft stupidity check
if (ie4) {
   if (navigator.userAgent.indexOf('MSIE 5')>0) {
      ie5 = true;
   } else {
      ie5 = false; }
} else {
   ie5 = false;
}


if ( (ns4) || (ie4) ) {
   if (ns4) over = document.overInfo
   if (ie4) over = overInfo.style
   document.onmousemove = mouseMove
   if (ns4) document.captureEvents(Event.MOUSEMOVE)
}

////////////////////////////////////////////////////////////////////////////////////
// Public functions to be used on pages
////////////////////////////////////////////////////////////////////////////////////

// returns textual info about document's last modified date
function update()
{
   return ("Letzte Aktualisierung " + tag[modified.getDate()] + "-" + monat[modified.getMonth()] + "-" + modified.getYear() + "&nbsp;&nbsp;&nbsp;&nbsp;" + zeit[modified.getHours()] + ":" + zeit[modified.getMinutes()])
}

// simple popup right
function drs(text) {
   dts(1,text);
}

// caption popup right
function drc(text, title) {
   dtc(1,text,title);
}

// sticky caption right
function src(text,title) {
   stc(1,text,title);
}

// simple popup left
function dls(text) {
   dts(0,text);
}

// caption popup left
function dlc(text, title) {
   dtc(0,text,title);
}

// sticky caption left
function slc(text,title) {
   stc(0,text,title);
}

// simple popup center
function dcs(text) {
   dts(2,text);
}

// caption popup center
function dcc(text, title) {
   dtc(2,text,title);
}

// sticky caption center
function scc(text,title) {
   stc(2,text,title);
}

// clears popups if appropriate
function nd() {
   if ( cnt >= 1 ) { sw = 0 };
   if ( (ns4) || (ie4) ) {
      if ( sw == 0 ) {
         snow = 0;
         hideObject(over);
      } else {
         cnt++;
      }
   }
}

////////////////////////////////////////////////////////////////////////////////////
// Non public functions. These are called by other functions etc.
////////////////////////////////////////////////////////////////////////////////////

// simple popup
function dts(d,text) {
   txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=\""+backcolor+"\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\""+fcolor+"\"><TR><TD><FONT FACE=\"Arial,Helvetica\" COLOR=\""+textcolor+"\" SIZE=\"-2\">"+text+"</FONT></TD></TR></TABLE></TD></TR></TABLE>"
   layerWrite(txt);
   dir = d;
   disp();
}

// caption popup
function dtc(d,text, title) {
   txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=\""+backcolor+"\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD><SPAN ID=\"ttHeader\"><B><FONT COLOR=\""+capcolor+"\">"+title+"</FONT></B></SPAN></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\""+fcolor+"\"><TR><TD><SPAN ID=\"ttBody\"><FONT COLOR=\""+textcolor+"\">"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>"
   layerWrite(txt);
   dir = d;
   disp();
}

// sticky
function stc(d,text, title) {
   sw = 1;
   cnt = 0;
   txt = "<TABLE WIDTH="+width+" BORDER=0 CELLPADDING="+border+" CELLSPACING=0 BGCOLOR=\""+backcolor+"\"><TR><TD><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD><SPAN ID=\"ttHeader\"><B><FONT COLOR=\""+capcolor+"\">"+title+"</FONT></B></SPAN></TD><TD ALIGN=RIGHT><A HREF=\"/\" onMouseOver=\"cClick();\" ID=\"ttClose\"><FONT COLOR=\""+closecolor+"\">Close</FONT></A></TD></TR></TABLE><TABLE WIDTH=100% BORDER=0 CELLPADDING=2 CELLSPACING=0 BGCOLOR=\""+fcolor+"\"><TR><TD><SPAN ID=\"ttBody\"><FONT COLOR=\""+textcolor+"\">"+text+"</FONT><SPAN></TD></TR></TABLE></TD></TR></TABLE>"
   layerWrite(txt);
   dir = d;
   disp();
   snow = 0;
}

// common calls
function disp() {
   if ( (ns4) || (ie4) ) {
      if (snow == 0)    {
         if (dir == 2) { // center
            moveTo(over,x+offsetx-(width/2),y+offsety);
         }
         if (dir == 1) { // right
            moveTo(over,x+offsetx,y+offsety);
         }
         if (dir == 0) { // left
            moveTo(over,x-offsetx-width,y+offsety);
         }
         showObject(over);
         snow = 1;
      }
   }
// here you can make the text goto the statusbar
}

// moves the layer
function mouseMove(e) {
   if (ns4) {x=e.pageX; y=e.pageY;}
   if (ie4) {x=event.x; y=event.y;}
   if (ie5) {x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}
   if (snow) {
      if (dir == 2) { // Center
         moveTo(over,x+offsetx-(width/2),y+offsety);
      }
      if (dir == 1) { // Right
         moveTo(over,x+offsetx,y+offsety);
      }
      if (dir == 0) { // Left
         moveTo(over,x-offsetx-width,y+offsety);
      }
   }
}

// the close onMouseOver function for sticky
function cClick() {
   hideObject(over);
   sw=0;
}

// writes to a layer
function layerWrite(txt) {
        if (ns4) {
                var lyr = document.overInfo.document
                lyr.write(txt)
                lyr.close()
        }
        else if (ie4) document.all["overInfo"].innerHTML = txt
}

// make an object visible
function showObject(obj) {
        if (ns4) obj.visibility = "show"
        else if (ie4) obj.visibility = "visible"
}

// hides an object
function hideObject(obj) {
        if (ns4) obj.visibility = "hide"
        else if (ie4) obj.visibility = "hidden"
}

// move a layer
function moveTo(obj,xL,yL) {
        obj.left = xL
        obj.top = yL
}

/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/

////////////////////////////////////////////////////////////////////////////////////
// opens top pop-up window for information distribution
////////////////////////////////////////////////////////////////////////////////////

// opens news window on initial loading randomly (50:50, if  ( sec % "Zahl" == 0 ) "Zahl"= "2")  



function popUp(adresse, adresse2, adresse3, adresse4, zahl)


{
    

var zeit = new Date();
    
var sec  = zeit.getSeconds();
    

if (sec % zahl == 0)
    
{
 //       baseWindow = window.open(adresse,'new','resizable=no,scrollbars=no,top=26,left=3,width=345,height=375');
 
 baseWindow = window.open(adresse,'new','resizable=no,scrollbars=no,top=26,left=3,width=441,height=390');


    baseWindow.href = adresse.htm;
 
      
    if (!baseWindow.opener) baseWindow.opener = self;
    
}

else 

if (sec % zahl == 1)

{
      baseWindow = window.open(adresse2,'new','resizable=no,scrollbars=no,top=26,left=3,width=345,height=440');
 
 

  baseWindow.href = adresse2.htm;
 
      
    if (!baseWindow.opener) baseWindow.opener = self;
    
}


else 

if (sec % zahl == 2)

{
        baseWindow = window.open(adresse3,'new','resizable=no,scrollbars=no,top=26,left=3,width=441,height=390');
 

  baseWindow.href = adresse3.htm;
 
      
    if (!baseWindow.opener) baseWindow.opener = self;
    
}

else 

if (sec % zahl == 3)

{
        baseWindow = window.open(adresse4,'new','resizable=no,scrollbars=no,top=26,left=3,width=441,height=390');
 

  baseWindow.href = adresse4.htm;
 
      
    if (!baseWindow.opener) baseWindow.opener = self;
    
}

}

/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/



function popUp2(bildadresse)

// Nur für JPG.Bilder ohne Beschriftung

{
baseWindow = window.open(bildadresse,'new','resizable=yes,scrollbars=yes,top=41,left=23,width=970,height=600');
 

  baseWindow.href = bildadresse; 
      
    if (!baseWindow.opener) baseWindow.opener = self;
}    



/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/

function popUp3(bild, ident)

{

//window.name = bild; ( öffnet im selben Fenster )


ident2 ='sektor' + ident
//if ( ident > "" ) document.getElementById(ident2).title="";
//if ( ident2.title > "" ) document.getElementById(ident2).title="";
document.getElementById(ident2).title.visibility ="hidden";

adresse = '../popup/index5.htm';

n = "Walking"

if ( bild.search(n) > -1 ) {
baseWindow = window.open(adresse,'new','resizable=yes,scrollbars=yes,top=5,left=0,width=1200,height=1400');
}
else
{
baseWindow = window.open(adresse,'new','resizable=yes,scrollbars=yes,top=5,left=0,width=995,height=700');
}

//baseWindow.name = bild;

ordnername = 'http://www.herzmuskel.de/pics/Karten/'

baseWindow.name = ordnername + bild;

   baseWindow.href = adresse;
      
    if (!baseWindow.opener) baseWindow.opener = self;
 
//window.setTimeout("titlename2()", 2500);

//titlename2()
}    


function titlename2()
{
b = bild.length;
bild = bild.substring(1, b-4);
bild = "",""+bild+"",""
document.getElementById(ident2).title=bild;

alert(bild);

}



/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/

function popUp4(bild)

{

//window.name = bild; ( öffnet im selben Fenster )

adresse = '../popup/index6.htm';

baseWindow = window.open(adresse,'new','resizable=yes,scrollbars=yes,top=5,left=0,width=995,height=700');

//baseWindow.name = bild;

ordnername = 'http://www.herzmuskel.de/pics/Karten/'

baseWindow.name = ordnername + bild;

   baseWindow.href = adresse;
      
    if (!baseWindow.opener) baseWindow.opener = self;
 
}    

/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/

function popUp5()

{

//window.name = bild; ( öffnet im selben Fenster )

adresse = '../popup/index7.htm';

baseWindow = window.open(adresse,'new','resizable=yes,scrollbars=yes,top=5,left=0,width=1100,height=700');

//baseWindow.name = bild;

   baseWindow.href = adresse;
      
    if (!baseWindow.opener) baseWindow.opener = self;
 
}    

/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/


function bildadresse()

{
n = "Walking";

adresse = self.name;
a = adresse.lastIndexOf("/");
b = adresse.length;

ausschnitt = adresse.substring(a+1, b-4);


if ( adresse.search(n) > -1 ) {

document.write("<br><b>" + ausschnitt + "n</b>&nbsp;&nbsp;&nbsp;(&nbsp;rote Strecke: ca. 5 km, blaue Strecke ca. 4,5 km, beide Routen zusammen ca. 8 km&nbsp;)<br><br><img border=","0"," src= ","" + adresse + ""," width=","951"," height=","1322"," title=","" + ausschnitt + "n","><br><br><b>" + ausschnitt + "n</b><br>");
 }
 
 else
 
{
document.write("<img border=","0"," src= ","" + adresse + ""," width=","800"," height=","500"," title=","" + ausschnitt + "","><br><br><b>" + ausschnitt + "</b>");   
} 
}


/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/


/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/

function picture()

{
var zeit = new Date();
var sec  = zeit.getSeconds();
zahl = 10


if (sec % zahl == 0)
{picadresse = 'pics/koe2-hell.jpg';
alttext = 'Sport- und Gymnastikhalle';
}

else
if (sec % zahl == 1)
{picadresse = 'pics/Blick1.jpg';
alttext = 'Blick von Süden';
}

else
if (sec % zahl == 2)
{picadresse = 'pics/Blick2.jpg';
alttext = 'Blick von Süden';
}

else
if (sec % zahl == 3)
{picadresse = 'pics/Ballonbild1.jpg';
alttext = 'Klinik mit Park';
}

else
if (sec % zahl == 4)
{picadresse = 'pics/Brunnen1.jpg';
alttext = 'Brunnen an der Einfahrt';
}

else
if (sec % zahl == 5)
{picadresse = 'pics/Brunnenfigur_Kopf.JPG';
alttext = 'Brunnenfigur';
}

else
if (sec % zahl == 6)
{picadresse = 'pics/Kranichbrunnen.JPG';
alttext = 'Kranichbrunnen am Eingang';
}

else
if (sec % zahl == 7)
{picadresse = 'pics/Kraniche_am_Eingang.JPG';
alttext = 'Kraniche am Eingang';
}

else
if (sec % zahl == 8)
{picadresse = 'pics/Klinikpark_1.JPG';
alttext = 'Klinikpark';
}

else
if (sec % zahl == 9)
{picadresse = 'pics/Freitreppe.JPG';
alttext = 'hoch hinaus ...';
}

document.writeln("<img border=","0"," src= ","" + picadresse + ""," width=","251"," height=","149"," alt='" + alttext + "'>");

}
/*************************************************************************************************\
|*************************************************************************************************|
\*************************************************************************************************/


//function swappics()


function picture2()

{

titletexte = new Array();
titletexte[0] = "";
titletexte[1] = "Kranichbrunnen am Klinikeingang";
titletexte[2] = "Kraniche im Brunnen am Klinikeingang";
titletexte[3] = "Brunnen an der Einfahrt zur Klinik";
titletexte[4] = "Kopf der Brunnenfigur";
titletexte[5] = "Sport- und Gymnastikhalle von Süden";
titletexte[6] = "Klink von Süden im Frühjahr";
titletexte[7] = "Blick von Süden";
titletexte[8] = "Klinik mit Park";
titletexte[9] = "Impressionen im Klinikpark";
titletexte[10] = "Hoch hinaus ...";
titletexte[11] = "Veranstaltung x y";
titletexte[12] = "Veranstaltung x y";
titletexte[13] = "Veranstaltung x y";
titletexte[14] = "Veranstaltung x y";



var zeit = new Date();
var sec  = zeit.getSeconds();
zahl = 11;

c = sec % zahl;
cN = 'swap'+ c;
counter=0;

document.getElementById('Wechselbild').className='swap5';
document.getElementById('Wechselbild').title=titletexte[5];
document.getElementById('Wechselbild').href='../klinik/bilder.htm';
//document.getElementById('Wechselbild').className=cN;
//c++;
//counter++;
d = 11
window.setTimeout("ani5()", 2000);
//window.setTimeout("ani2()", 3500);
}

//document.writeln("c ist:   "+ c + "");	



function ani2()
{
document.getElementById('Wechselbild').className='swap0';
// ( "Ticker-Schleife":)  window.setTimeout("ani3()", 300);
window.setTimeout("ani4()", 300);
}


//Ticker-Schleife Bilder 11-14:
function ani3()
{
cN = 'swap'+ d;
document.getElementById('Wechselbild').className=cN;
document.getElementById('Wechselbild').title=titletexte[d];
document.getElementById('Wechselbild').href='../aktuelles/veranstaltungen.htm';

d++;
if ( d < 15 ) { window.setTimeout("ani2()", 3500);}
else
{ cN = 'swap'+ c; window.setTimeout("ani4()", 5000);}
}


function ani4()
{
document.getElementById('Wechselbild').className='swap0';
window.setTimeout("ani5()", 300);
}




function ani5()
{
cN = 'swap'+ c;
//document.getElementById('Wechselbild').title.visibility='hidden';
//document.getElementById('Wechselbild').title.position="50,50";
//document.getElementById('Wechselbild').title="";



document.getElementById('Wechselbild').className=cN;
document.getElementById('Wechselbild').title=titletexte[c];
document.getElementById('Wechselbild').href='../klinik/bilder.htm';
//document.getElementById('Wechselbild').title.visibility='visible';

counter++
c++
if ( c < 11 && counter < 10000) { d = 11; window.setTimeout("ani5()", 4175);}
//if ( c < 11 && counter < 10000) { d = 11; window.setTimeout("ani2()", 3500);}
else
{if ( c > 10 && counter < 10000)  {c = 1; d = 11; window.setTimeout("ani5()", 4175);}}
//{if ( c > 10 && counter < 10000)  {c = 1; d = 11; window.setTimeout("ani2()", 3500);}}
//else
//{ document.getElementById('Wechselbild').className=cN; }
}

//setTimeout('picture3(), 2000');


//setTimeout("document.getElementById('Wechselbild').className='swap1'", 1500);
//setTimeout("document.getElementById('Wechselbild').className='swap2'", 1500);
//document.getElementById('Bilder').innerHTML = "<a href=index.htm class=swap1 id=Wechselbild>&nbsp</a>"

//document.writeln("<a href=","index.htm"," class=","swap1"," id=","Wechselbild",">&nbsp</a>");
////////////////////////////////////////////////////////////////////////////////////
function ticker()
{

aaa = 'Blinker1'
bbb = 'Blinker2'
ccc = 'Blinker3'
ddd = 'Blinker4'

if (document.getElementById(aaa))
{ 
containerBlinker1();
window.setTimeout("ticker2()", 0);
}

if (document.getElementById(bbb))
{ 
containerBlinker2();
window.setTimeout("ticker7()", 0);
}

if (document.getElementById(ccc))
{ 
containerBlinker3();
window.setTimeout("ticker11()", 0);
}

if (document.getElementById(ddd))
{ 
containerBlinker4();
window.setTimeout("ticker15()", 0);
}

}


// Beginn Ticker 2-5 (Blinker aaa)



function ticker2()
{
document.getElementById(aaa).style.visibility = 'hidden'
window.setTimeout("ticker5()", 10);
}


function ticker3()
{
document.getElementById(aaa).style.visibility = 'visible'
window.setTimeout("ticker4()", 20);
}


function ticker4()
{
document.getElementById(aaa).style.visibility = 'hidden'
window.setTimeout("ticker5()", 20);
}


function ticker5()
{
document.getElementById(aaa).style.visibility = 'visible'
window.setTimeout("ticker2()", 5000);
}


// Beginn Ticker 7-10 ( Blinker bbb )


function ticker7()
{
document.getElementById(bbb).style.visibility = 'hidden'
window.setTimeout("ticker10()", 10);
}


function ticker8()
{
document.getElementById(bbb).style.visibility = 'visible'
window.setTimeout("ticker9()", 20);
}


function ticker9()
{
document.getElementById(bbb).style.visibility = 'hidden'
window.setTimeout("ticker10()", 20);
}


function ticker10()
{
document.getElementById(bbb).style.visibility = 'visible'
window.setTimeout("ticker7()", 5000);
}

// Beginn Ticker 10-13 ( Blinker ccc )


function ticker11()
{
document.getElementById(ccc).style.visibility = 'hidden'
window.setTimeout("ticker14()", 10);
}


function ticker12()
{
document.getElementById(ccc).style.visibility = 'visible'
window.setTimeout("ticker13()", 20);
}


function ticker13()
{
document.getElementById(ccc).style.visibility = 'hidden'
window.setTimeout("ticker14()", 20);
}


function ticker14()
{
document.getElementById(ccc).style.visibility = 'visible'
window.setTimeout("ticker11()", 5000);
}

// Beginn Ticker 15-18 ( Blinker ddd )

function ticker15()
{
document.getElementById(ddd).style.visibility = 'hidden'
window.setTimeout("ticker18()", 10);
}


function ticker16()
{
document.getElementById(ddd).style.visibility = 'visible'
window.setTimeout("ticker17()", 20);
}


function ticker17()
{
document.getElementById(ddd).style.visibility = 'hidden'
window.setTimeout("ticker18()", 20);
}


function ticker18()
{
document.getElementById(ddd).style.visibility = 'visible'
window.setTimeout("ticker15()", 5000);
}



////////////////////////////////////////////////////////////////////////////////////




function pictureshow()

{
/* Dias festlegen mit absolutem http-Pfad*/

//ordnername = "http://www.koenigstuhl.de/pics/"
ordnername = "../pics/"


diabilder = new Array();
diabilder[0] = new Image(); diabilder[0].src = ordnername + "Blick1.jpg";
diabilder[1] = new Image(); diabilder[1].src = ordnername + "Rezeption.jpg";
diabilder[2] = new Image(); diabilder[2].src = ordnername + "Bibliothek.jpg";
diabilder[3] = new Image(); diabilder[3].src = ordnername + "Zimmer3.jpg";
diabilder[4] = new Image(); diabilder[4].src = ordnername + "Saal5.jpg";
diabilder[5] = new Image(); diabilder[5].src = ordnername + "Schwimmhalle2.jpg"
diabilder[6] = new Image(); diabilder[6].src = ordnername + "Halle1.jpg";
diabilder[7] = new Image(); diabilder[7].src = ordnername + "Blick2.jpg";
diabilder[8] = new Image(); diabilder[8].src = ordnername + "Ballonbild1.jpg";
diabilder[9] = new Image(); diabilder[9].src = ordnername + "LVA1.jpg";
diabilder[10] = new Image(); diabilder[10].src = ordnername + "LVA25.jpg";
diabilder[11] = new Image(); diabilder[11].src = ordnername + "Brunnen.jpg";
diabilder[12] = new Image(); diabilder[12].src = ordnername + "Brunnen2.jpg";
diabilder[13] = new Image(); diabilder[13].src = ordnername + "Brunnenfigur_Kopf.JPG"
diabilder[14] = new Image(); diabilder[14].src = ordnername + "Kranichbrunnen.JPG";
diabilder[15] = new Image(); diabilder[15].src = ordnername + "Kraniche_am_Eingang.JPG";
diabilder[16] = new Image(); diabilder[16].src = ordnername + "Klinik_am_Abend.JPG";
diabilder[17] = new Image(); diabilder[17].src = ordnername + "Klinikpark_1.JPG";
diabilder[18] = new Image(); diabilder[18].src = ordnername + "Blueten_im_Park.JPG";
diabilder[19] = new Image(); diabilder[19].src = ordnername + "Barfusspfad.JPG";
diabilder[20] = new Image(); diabilder[20].src = ordnername + "Pilze_2.jpg";
diabilder[21] = new Image(); diabilder[21].src = ordnername + "Freitreppe.JPG";

diatexte = new Array();
diatexte[0] = "Klink von Süden im Frühjahr";
diatexte[1] = "Rezeption";
diatexte[2] = "Bibliothek";
diatexte[3] = "Patientenzimmer";
diatexte[4] = "Speisesaal";
diatexte[5] = "Schwimmhalle";
diatexte[6] = "Sport- und Gymnastikhalle";
diatexte[7] = "Blick von Süden";
diatexte[8] = "Klinik mit Park ( <a href=http://www.heidelberg-ballon.de target=_blank>www.heidelberg-ballon.de </a> )";
diatexte[9] = "Heidelberg-Kohlhof und Klinik im Herbst";
diatexte[10] = "Auf der Kohlhof-Wiese im Winter";
diatexte[11] = "Brunnen an der Einfahrt zur Klinik";
diatexte[12] = "Brunnenfigur";
diatexte[13] = "Kopf der Brunnenfigur";
diatexte[14] = "Kranichbrunnen am Klinikeingang";
diatexte[15] = "Kraniche im Brunnen am Klinikeingang";
diatexte[16] = "Klinikzufahrt am Abend";
diatexte[17] = "Impressionen im Klinikpark";
diatexte[18] = "Glycinienblüten im Park";
diatexte[19] = "Barfußpfad";
diatexte[20] = "Auch das gibt es im Park ...";
diatexte[21] = "Hoch hinaus ...";

diadelay0();
}


function pictureshow2()
{
ordnername = "../pics/"

diabilder = new Array();
diabilder[0] = new Image(); diabilder[0].src = ordnername + "Billard.jpg";
diabilder[1] = new Image(); diabilder[1].src = ordnername + "Bibliothek.jpg";
diabilder[2] = new Image(); diabilder[2].src = ordnername + "Kegelbahn.jpg";
diabilder[3] = new Image(); diabilder[3].src = ordnername + "Ballonbild1.jpg";
diabilder[4] = new Image(); diabilder[4].src = ordnername + "Schwimmhalle2.jpg";
diabilder[5] = new Image(); diabilder[5].src = ordnername + "Kneipp1.jpg";
diabilder[6] = new Image(); diabilder[6].src = ordnername + "Minigolf.JPG";
diabilder[7] = new Image(); diabilder[7].src = ordnername + "Schachbrett.JPG";

diatexte = new Array();
diatexte[0] = "Billard";
diatexte[1] = "Bibliothek";
diatexte[2] = "Kegelbahn";
diatexte[3] = "Klinik mit Park ( <a href=http://www.heidelberg-ballon.de target=_blank>www.heidelberg-ballon.de </a> )";
diatexte[4] = "Schwimmhalle";
diatexte[5] = "Kneipp-Becken"
diatexte[6] = "Minigolf im Park";
diatexte[7] = "Open-Air-Schachbrett im Park";


diadelay0();
}



function diadelay0()

{

/* Hoehe des hoechsten Bildes angeben, Angaben in Pixeln */
var diahoehe = 300;

/* Verzoegerung festlegen, Angaben in Sekunden */
diaverzoegerung = 3600;


/* AB HIER BITTE NICHTS AENDERN */


/* Erstes Bild anzeigen */
diabild.src = diabilder[0].src;
document.getElementById('diatext').innerHTML = diatexte[0]

/* Hoehe der Tabelle aufgrund der maximalen Bildhoehe festlegen */
document.getElementById("zelle").style.height = diahoehe + 20;

/* Variablen definieren */
diazaehler = -1;
diaschalter = 1;
diaanzahl = diabilder.length;
cc = 1
zustand = 0

ordnername2 = "../pics/useful/"

diadelay();
window.setTimeout("blinker()", 1000);

}


/* Bildanzeigefunktionen */
function dianext0()
{
window.setTimeout("dianext()", 150);
}


function dianext()
{
diazaehler ++;
if ( diazaehler >= diaanzahl ) diazaehler = 0;
diabild.src = diabilder[diazaehler].src;
document.getElementById('diatext').innerHTML = diatexte[diazaehler]
}

function diaback0()
{
window.setTimeout("diaback()", 150);
}

function diaback()
{
diazaehler --;
if ( diazaehler < 0 ) diazaehler = diaanzahl-1;
diabild.src = diabilder[diazaehler].src;
document.getElementById('diatext').innerHTML = diatexte[diazaehler]
}

function diadelay()
{
if ( diaschalter == 1 ) dianext();
window.setTimeout("diadelay()",(diaverzoegerung));
}



//on mouseover picture:
function standbild()
{
ordnername = "../pics/"

/* Hoehe des hoechsten Bildes angeben, Angaben in Pixeln */
var diahoehe = 300;
var diabreite = 450;

/* Hoehe der Tabelle aufgrund der maximalen Bildhoehe festlegen */
document.getElementById("zelle").style.height = diahoehe + 20;
document.getElementById("zelle").style.width = diabreite + 20;


if ( diaschalter == 0 ) zustand = 0;
else
zustand = 1;
//alert(zustand)
diaschalter = 0;
bildtausch2();
diabild.src = ordnername + "Hinweis.JPG";
diabild.title = "Das Herunterladen von Bildern ist blockiert.\nFortsetzen der Bildergalerie mit der\nTaste 'Diashow fortsetzen'."
document.getElementById('diatext').innerHTML = "<font color = #ffffff>Bildershow_gestoppt</font>";
window.setTimeout("hinweis()", 60);

}

//um Sprünge in Text zu verhindern
function hinweis()
{

document.getElementById('diatext').innerHTML = "<font color = #ffffff>Bildershow_gestoppt</font><b><font color = #000000>Fortsetzen der Bildergalerie mit der Pfeiltaste rechts.</b>";
//document.getElementById('zelle').innerHTML = "Hier können keine Bilder heruntergeladen werden.<br>Zum Fortsetzen der Diashow <br>bitte den rechten Knopf anklicken.<br>"+
//"<a href=bilder.htm>zurück zur Diashow</a>";
//diabild.title = "Hier können keine Bilder heruntergeladen werden.\nZum Fortsetzen der Diashow bitte\n'O.K.' anklicken."
//alert( "\nBildkopierschutz: \n\nBitte nicht mit dem Zeiger auf das Bild gehen.\n\n"+
//"Soll die Diashow fortgesetzt werden ?\n")
//standbildend()
}


function standbildend()
{
if ( zustand == 0 ) 
{ diaschalter = 0;
bildtausch2();
}
else
{ bildtausch4();
diaschalter = 1;
}
diabild.src = diabilder[diazaehler].src;
document.getElementById('diatext').innerHTML = diatexte[diazaehler]
}

////////////////////////////////////////////////////////////////////////////////////
//Knopf-Animationen

function bildtausch1()
{

tauschbild1.src = new Image(); 
tauschbild1.src = ordnername2 + "diabackaktiv.gif";
window.setTimeout("bildtausch12()", 180);
}
function bildtausch12()
{
tauschbild1.src = new Image(); 
tauschbild1.src = ordnername2 + "diaback.gif";
}



function bildtausch2()
{
ordnername2 = "../pics/useful/"
tauschbild2.src = new Image(); 
tauschbild2.src = ordnername2 + "diastopaktiv.gif";
tauschbild2.title = "Diashow steht"
tauschbild4.src = new Image(); 
tauschbild4.src = ordnername2 + "diaplay.gif";
tauschbild4.title = "Diashow fortsetzen"

}



function bildtausch3()
{
tauschbild3.src = new Image(); 
tauschbild3.src = ordnername2 + "dianextaktiv.gif";
window.setTimeout("bildtausch32()", 180);
}
function bildtausch32()
{
tauschbild3.src = new Image(); 
tauschbild3.src = ordnername2 + "dianext.gif";
}



function bildtausch4()
{
if ( diaschalter == 0 )
{
ordnername2 = "../pics/useful/"
//tauschbild2.src = new Image(); 
tauschbild2.src = ordnername2 + "diastop.gif";
tauschbild2.title = "Diashow anhalten";
tauschbild4.src = new Image(); 
tauschbild4.src = ordnername2 + "diaplayaktiv.gif";
tauschbild4.title = "Diashow läuft"
//blinker(); ( Aktivierung hier erzeugt doppeltes Blinken )
cc = 1
}
}


function blinker1()
{
ordnername2 = "../pics/useful/"
tauschbild4.src = new Image(); 
tauschbild4.src = ordnername2 + "diaplay.gif";
}

function blinker2()
{
ordnername2 = "../pics/useful/"
tauschbild4.src = new Image(); 
tauschbild4.src = ordnername2 + "diaplayaktiv.gif";
if ( diaschalter == 0 ) tauschbild4.src = ordnername2 + "diaplay.gif";
}


function blinker()
{
ordnername2 = "../pics/useful/"
if ( diaschalter == 1 && cc == 1 ) blinker1();
if ( diaschalter == 1 && cc == 2 ) blinker2();
cc++
if ( cc == 3 ) cc = 1 
window.setTimeout("blinker()", 900);
}


////////////////////////////////////////////////////////////////////////////////////
// opens new window for picture viewing depending on navigation level (L0-L2)
////////////////////////////////////////////////////////////////////////////////////

// opens window from main level
function zoomL0(img, alt, w, h)
{
   var pos = "top";
   var name = "<img src="+img+" width="+w+" height="+h+" border="+0+" alt=\""+alt+"\" align="+pos+">";
   var param = "width="+(w+45)+",height="+(h+80)+",left=100,top=100,resizable=false,scrollbars=false";
   var txt = "<tr><td><img src=\"./pics/std/x.gif\" width=\"10\" height=\"10\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"./pics/std/x.gif\" width=\"10\" height=\"1\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"./pics/std/x.gif\" width=\"20\" height=\"1\" border=\"0\"></td><td width=\"*\" align=\"center\"><font face=\"Arial, Helvetica, sans-serif\" size=\"0\" color=\"#202020\">"+alt+"</font></td><td><img src=\"./pics/std/x.gif\" width=\"25\" height=\"1\" border=\"0\"></td></tr>";
   view = window.open("./popup/zoom.htm","Zoom",param);

   view.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><TITLE>Königstuhl (Zoom)</TITLE></HEAD>');
   view.document.write('<BODY text="#000000" bgColor="#FFFFFF" leftMargin="0" topMargin="0" marginheight="0" marginwidth="0">');
   view.document.write('<table border="0" cellspacing="0" cellpadding="0" width="10">');
   view.document.write('<tr><td><img src="pics/std/arw_l_l.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="40" height="1" border="0"></td><td width="*"><img src="pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td colspan="5" bgcolor="#B5C6DA"><img src="pics/std/x.gif" width="100%" height="10" border="0"></td></tr>');
   view.document.write('<tr height="4"><td colspan="2" bgcolor="#B5C6DA"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td colspan="2" rowspan="3">');
      view.document.write(name);
   view.document.write('</td><td bgcolor="#B5C6DA"><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="pics/std/x.gif" width="10" height="25" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="pics/std/x.gif" width="25" height="25" border="0"></td></tr>');
   view.document.write('<tr><td><img src="pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   //     no description output on top level
   //     view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="3" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*"><img src="../pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   //     view.document.write(txt);
   view.document.write('<tr><td><img src="pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="20" height="1" border="0"></td><td width="*" align="center"><input type="button" value="Fenster schlie&#223;en" onclick=window.close()></td><td><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('</table>');
   view.document.write('</BODY></HTML>');

   if (view.closed == false) view.focus();
}

// opens window from main navigation level (L1)
function zoomL1(img, alt, w, h)
{
   var pos = "top";
   var name = "<img src="+img+" width="+w+" height="+h+" border="+0+" alt=\""+alt+"\" align="+pos+">";
   var param = "width="+(w+45)+",height="+(h+90)+",left=100,top=100,resizable=false,scrollbars=false";
   var txt = "<tr><td><img src=\"../pics/std/x.gif\" width=\"10\" height=\"10\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"../pics/std/x.gif\" width=\"10\" height=\"1\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"../pics/std/x.gif\" width=\"20\" height=\"1\" border=\"0\"></td><td width=\"*\" align=\"center\"><font face=\"Arial, Helvetica, sans-serif\" size=\"0\" color=\"#202020\">"+alt+"</font></td><td><img src=\"../pics/std/x.gif\" width=\"25\" height=\"1\" border=\"0\"></td></tr>";
   view = window.open("../popup/zoom.htm","Zoom",param);

   view.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><TITLE>Königstuhl (Zoom)</TITLE></HEAD>');
   view.document.write('<BODY text="#000000" bgColor="#FFFFFF" leftMargin="0" topMargin="0" marginheight="0" marginwidth="0">');
   view.document.write('<table border="0" cellspacing="0" cellpadding="0" width="10">');
   view.document.write('<tr><td><img src="../pics/std/arw_l_l.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="40" height="1" border="0"></td><td width="*"><img src="../pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td colspan="5" bgcolor="#B5C6DA"><img src="../pics/std/x.gif" width="100%" height="10" border="0"></td></tr>');
   view.document.write('<tr height="4"><td colspan="2" bgcolor="#B5C6DA"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td colspan="2" rowspan="3">');
      view.document.write(name);
   view.document.write('</td><td bgcolor="#B5C6DA"><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="25" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="../pics/std/x.gif" width="25" height="25" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
     view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="3" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*"><img src="../pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
     view.document.write(txt);
   view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*" align="center"><input type="button" value="Fenster schlie&#223;en" onclick=window.close()></td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('</table>');
   view.document.write('</BODY></HTML>');

   if (view.closed == false) view.focus();
}

// opens window from displaying level (L2)
function zoomL2(img, alt, w, h)
{
   var pos = "top";
   var name = "<img src="+img+" width="+w+" height="+h+" border="+0+" alt=\""+alt+"\" align="+pos+">";
   var param = "width="+(w+45)+",height="+(h+90)+",left=100,top=100,resizable=false,scrollbars=false";
   var txt = "<tr><td><img src=\"../../pics/std/x.gif\" width=\"10\" height=\"10\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"../../pics/std/x.gif\" width=\"10\" height=\"1\" border=\"0\"></td><td bgcolor=\"#DFE9F4\"><img src=\"../../pics/std/x.gif\" width=\"20\" height=\"1\" border=\"0\"></td><td width=\"*\" align=\"center\"><font face=\"Arial, Helvetica, sans-serif\" size=\"0\" color=\"#202020\">"+alt+"</font></td><td><img src=\"../../pics/std/x.gif\" width=\"25\" height=\"1\" border=\"0\"></td></tr>";
   view = window.open("../../popup/zoom.htm","Zoom",param);

   view.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><HTML><HEAD><TITLE>Königstuhl (Zoom)</TITLE></HEAD>');
   view.document.write('<BODY text="#000000" bgColor="#FFFFFF" leftMargin="0" topMargin="0" marginheight="0" marginwidth="0">');
   view.document.write('<table border="0" cellspacing="0" cellpadding="0" width="10">');
   view.document.write('<tr><td><img src="../../pics/std/arw_l_l.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="40" height="1" border="0"></td><td width="*"><img src="../../pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td colspan="5" bgcolor="#B5C6DA"><img src="../../pics/std/x.gif" width="100%" height="10" border="0"></td></tr>');
   view.document.write('<tr height="4"><td colspan="2" bgcolor="#B5C6DA"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td colspan="2" rowspan="3">');
      view.document.write(name);
   view.document.write('</td><td bgcolor="#B5C6DA"><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="25" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="../../pics/std/x.gif" width="25" height="25" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
     view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="3" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*"><img src="../../pics/std/x.gif" border="0" width="1" height="1"></td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
     view.document.write(txt);
   view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*" align="center"><input type="button" value="Fenster schlie&#223;en" onclick=window.close()></td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('<tr><td><img src="../../pics/std/x.gif" width="10" height="10" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="10" height="1" border="0"></td><td bgcolor="#DFE9F4"><img src="../../pics/std/x.gif" width="20" height="1" border="0"></td><td width="*">&nbsp;</td><td><img src="../../pics/std/x.gif" width="25" height="1" border="0"></td></tr>');
   view.document.write('</table>');
   view.document.write('</BODY></HTML>');

   if (view.closed == false) view.focus();
}




////////////////////////////////////////////////////////////////////////////////////
//

function Minimize()
{parent.innerWidth = 100;
parent.innerHeight = 100;
parent.screenX = screen.width;
parent.screenY = screen.height;
alwaysLowered = true;
}

////////////////////////////////////////////////////////////////////////////////////
//

function Maximize()
{
window.innerWidth = screen.width;
window.innerHeight = screen.height;
window.screenX = 0;
window.screenY = 0;
alwaysLowered = false;
}

////////////////////////////////////////////////////////////////////////////////////
//

//Syntax beim Aufruf: onsubmit= "return formtest(this.Mitteilung, '>','<')" 

function formtest(feld, Zeichen1, Zeichen2)
{
if(feld.value.search(Zeichen1) > -1 ||  feld.value.search(Zeichen2) > -1 ) 
{
alert("Die Zeichen     " + Zeichen1 + "     oder     " + Zeichen2 + "     sind nicht erlaubt! ");
return false;
}
}
////////////////////////////////////////////////////////////////////////////////////
//



//Syntax beim Aufruf: onsubmit= "return formtestTel(this.Telefon)" 


function formtestTel(feld)


 {

   var c = feld.value;  var d = ""; 

 if (c.length && c.indexOf(" ") > -1 )  {

  for (i = 0; i < c.length; i++) {
    if (c.substring(i,i+1) == " ") { d = d + ""; } else { d = d + c.substring(i,i+1); }
  }
  }
  else { d = c; }
  

if (isNaN(d))
 {
alert("Bei     " + c + "     handelt \n\nes sich nicht um eine Telefon-Nr. ! ");
return false;
 }
 }

////////////////////////////////////////////////////////////////////////////////////
//


//Syntax beim Aufruf: onsubmit= "return formtestEmail(this.email)" 


function formtestEmail(feld)

 {

var a = feld.value;

if(a.indexOf("@") > 0 && a.length > a.lastIndexOf("@") + 5 && a.lastIndexOf(".") + 2 < a.length && a.indexOf(",") == -1 && a.indexOf(";") == -1 && a.indexOf(":") == -1 && a.indexOf(" ") == -1 )

{
if((a.indexOf("@")) !=  (a.lastIndexOf("@")) ) 
{
alert("Das Zeichen   @    darf \n\nnur 1 mal vorkommen! ");
return false;
}
}
else {

alert("Es handelt sich bei   " + a +"    \n\nnicht um  eine e-mail-Adresse! ");

return false; }



}






////////////////////////////////////////////////////////////////////////////////////
//

function datum()

{

var tag   = new Array("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31");

var monat = new Array("Januar","Februar","März","April","Mai","Juni","Juli","August","September","Oktober","November","Dezember");

var zeit  = new Array("00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "50", "51", "52", "53", "54", "55", "56", "57", "58", "59");
modified  = new Date(document.lastModified)


var jahr = modified.getYear();
var jjahr = "";

 if( jahr < 1900) { jjahr = (jahr + 1900); }
  else
  {jjahr = jahr};

document.write("&nbsp;"+ tag[modified.getDate()] + ".&nbsp;" + monat[modified.getMonth()] + 
"&nbsp;" + jjahr + ",&nbsp;&nbsp;" + zeit[modified.getHours()] + ":" + zeit[modified.getMinutes()]+"&nbsp;Uhr"+"<br>")

}

////////////////////////////////////////////////////////////////////////////////////
//

function identification()

{

// document.write("<b>Letzte Änderung:&nbsp;&nbsp; </b>" + document.lastModified +"<br><br>");

document.write("<b>Browser-Code:&nbsp;&nbsp;</b>" + navigator.appCodeName + "<br>" + "<b>Browser-Name:&nbsp;&nbsp;</b>" +navigator.appName + "<br>" +
 "<b>Browser-Version:&nbsp;&nbsp;</b>" + navigator.appVersion + "<br>" + "<b>Betriebssystem:&nbsp;&nbsp; </b> " + navigator.platform + 
  "<br>"+ "<b>HTTP-Browser-Daten:&nbsp;&nbsp; </b> " + navigator.userAgent + "<br>" + "<b>Ihre momentane IP-Adresse:&nbsp;&nbsp;</b>" );
document.write("<script language=","JavaScript"," type=","text/javascript"," src=","http://www.nwlab.net/cgi-bin/show-ip-js","> </script>" );

}

////////////////////////////////////////////////////////////////////////////////////
//

/*
function ipadresse()
 {
 
c = www.nwlab.net/cgi-bin/show-ip-js

 
var aEls = document.getElementById('IP-Bereich').getElementsByTagName('a');

	for (var i=0; i<aEls.length; i++)
{	b = aEls[i].href

if (c.search(b) > -1)

  {
a = aEls[i].childNode.innerHTML




 alert(" IP-Adresse:" + a );
/*
 for (i = 0; i < a.length; i++)   {
 if (isNaN(a.substring(i,i+1))) { b = b; } 
 
 else 
 
{ b = b + a.substring(i,i+1);} 

ipnumber = b;


alert(b);

document.writeln(b);

}

*/


////////////////////////////////////////////////////////////////////////////////////
//


function frompage()

 {
 var a = document.referrer; var b = "";

  if (a.length) 

  {


         for (i = 0; i < a.length; i++)   {
         if (a.substring(i,i+1) == "/") { b = b + "+"; } 
          else 
         { b = b + a.substring(i,i+1);}   }


 // if (a.search('http://www.koenigstuhl.de') == -1  )
//  ||  a.substring(0, 25) != "http://www.koenigstuhl.de" ) {

// if (a.substring(0, 23) != "http://www.koenigstuhl.")    {

if (a.substring(0, 23) != "http://www.koenigstuhl." && a.substring(0, 19) != "http://koenigstuhl.")    {

document.writeln("<img src=","http://webcounter.goweb.de/48469REF"+b+""," width=1 height=1 alt=' '>");   }
 //document.writeln( b ); 
else {

document.writeln("<img src=","http://webcounter.goweb.de/122837REF"+b+""," width=1 height=1 alt=' '>");  }

//document.writeln( a );    

  
}

thispage();
}


////////////////////////////////////////////////////////////////////////////////////
//


function thispage()


{

c = document.URL; var d = ""; 

 if (c.length) {

  for (i = 0; i < c.length; i++) {
    if (c.substring(i,i+1) == "/") { d = d + "+"; } else { d = d + c.substring(i,i+1); }
  }

  }

document.writeln("<img src=","http://webcounter.goweb.de/122928REF"+d+""," width=1 height=1 alt=' '>");

// document.writeln( d );
}



////////////////////////////////////////////////////////////////////////////////////
//


 function aktseite()

{

c = document.URL;

//document.writeln("" + c + "<br>");

var aEls = document.getElementById('OberEbene').getElementsByTagName('a');

//document.writeln(aEls.length);

	for (var i=0; i<aEls.length; i++)
{	b = aEls[i].href
//if (b==c)
if (c.search(b) > -1)
  {
//document.writeln("Seite ist gleich dem Link:  "+ b + "");	
      //aEls[i].onload=function() {
			aEls[i].parentNode.className = 'leftNavAkt'; 

// aEls[i].parentNode.innerHTML ="<a href=\"xyz.htm\">XYZXYZXYZ</a>";
//aEls[i].innerHTML ="<a href=xyz.htm>XYZXYZXYZ</a>";
//aEls[i].className = 'leftNavAkt';
//aEls[i].href="xyz.htm";

	//	 }		
}
}

// 2.Teil für topNav

if (document.getElementById('directNav'))
{
var aEls = document.getElementById('directNav').getElementsByTagName('a');
	for (var i=0; i<aEls.length; i++)
{	b = aEls[i].href

if (c.search(b) > -1)
  {
			aEls[i].parentNode.className = 'topNavAkt'; 
		}
}
}

// Ende 2.Teil 

}

////////////////////////////////////////////////////////////////////////////////////
//

function emptyB3()
{

if (!ie4 || !ie5 || !ie6){

document.getElementById('EbeneB3').innerHTML = "<div>&nbsp;</div>"
}
}

///////////////////////////////////////////////////////////////////
function container()

{

c = document.URL;



containerA3();
containerB3();
containerC3();
containerD3();
//containerE3();
containerF3();
containerG3();
containerH3();


/*  if (document.getElementById('EbeneU3'))
{ 
containerU3();
}
*/

if (c.search('/klinik/') > -1)
{ 
containerU3();
}

}


///////////////////////////////////////////////////////////////////


function containerA3()

{
//if ((ie4) || (ie5) || (ie6))

document.getElementById('EbeneA3').innerHTML = "<table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table215 >"+
  "      <tr>"+
   "       <td>"+
    "        <!-- left navigation -->"+
     "       <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table216 >"+
      "        <!-- t1 -->"+


  "            <!--main navigation--><!-- spacer -->"+
   "           <tr>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src=  ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
      "          <td bgcolor= #B5C6DA >"+
       "         <img src=  ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
        "      </tr>"+
         "     <tr>"+
          "      <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
           "     <img src=  ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
            "  </tr>"+
"            <!-- spacer -->"+
 "             <tr bgcolor= #d5d5d5 >"+
  "              <td bgcolor= #B5C6DA >"+
   "             <img src=  ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src=  ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <!-- spacer -->"+
        "      <tr>"+
 "               <td><img src=  ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
  "              <td width= 174 >"+
   "            </td>"+
  

  "       <tr>"+
   "             <td bgcolor= #D5D5D5  height= 1 >"+
    "          <img src=  ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
     "           <td height= 1  bgcolor= #D5D5D5 >"+
           "          <img src=  ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
       "       </tr>"+



 "             </tr>"+
  "            <tr>"+
   "             <td><img src=  ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table217 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src=  ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
         "        </tr>"+
          "       <!--3. level --><!--3. level End -->"+
           "      <tr>"+
            "       <td>"+
             "      <img src=  ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign=top>"+
               "    <img src=  ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
 "                  <td width= 153  class= leftNav >"+
  "                 <a href= ../aktuelles/aktuelles.htm >News&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
   "                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
    "             </tr>"+
     "            <tr>"+
      "             <td>"+
       "            <img src=  ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
        "           <td valign=top>"+
         "          <img src=  ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
          "         <td width= 153  class= leftNav >"+
           "        <a href= ../aktuelles/klinikinfos.htm >Informationen&nbsp;zur"+ 
            "       Klinik&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
             "    </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src=  ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src=  ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../aktuelles/veranstaltungen.htm >Veranstaltungen&nbsp;&amp;"+ 
        "           Termine&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+
          "       <tr>"+
           "        <td>"+
           "        <img src=  ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
"                   <td valign=top>"+
 "                  <img src=  ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
  "                <td width= 153  class= leftNav >"+
   "                <a href= ../aktuelles/projekte.htm >"+
    "               Projekte&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
     "            </tr>"+
      "           <tr>"+
       "            <td>"+
        "           <img src=  ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
         "          <td valign=top>"+
          "         <img src=  ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
           "        <td width= 153  class= leftNav >"+
            "       <a href= ../aktuelles/downloads.htm >"+
             "      Downloads&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
 "                </tr>"+
  "               <tr>"+
   "               <td></td>"+
    "               <td valign=top></td>"+
     "              <td> "+
      "             <img src=  ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
        "         </tr>"+
"               </table></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <!-- spacer -->"+
    "          <!-- spacer -->"+
     "         <tr>"+
      "          <td bgcolor= #D5D5D5  height= 1 >"+
       "         <img src=  ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "       <td height= 1  bgcolor= #D5D5D5 >"+
         "       <img src=  ../pics/std/x.gif  width= 168  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <tr>"+
"                <td colspan= 2 >"+
 "               <img src=  ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
  "            </tr>"+
   "         </table>"+
    "      </td>"+
     "     <td width= 6  background=  ../pics/std/shdw_r.gif >"+
      "    <img src=  ../pics/std/x.gif  width= 6  border= 0 ></td>"+
       "   </tr>"+
"        <tr>"+
 "         <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
  "        <img src=  ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
   "     </tr>"+
 "     </table>"
  
}
/////////////////////////
//////////////////////////////////////////


//document.getElementById('Ebene20').innerHTML = "<img src= ../pics/std/x.gif  width= 12  height= 10  border= 0 ></td><td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td><td width= 153 >"+
//"<a href= ../aktuelles/aktuelles.htm class =leftNav>News&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"                                   


//document.getElementById('Ebene20').innerHTML = "<table border=5 width=40 bgcolor=#B5C6DA id=Tab1>  <tr ><td>aa</td><td>bb</td>"+
//"<tr><td>c</td><td><b>&nbsp;&nbsp;&nbsp;&nbsp;d</b></td></tr></tr> </table>";


//Layertest: funktioniert nicht bei mozilla
//txt = "ggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggg"
//  layerWrite(txt);

///////////////////////////////

 function containerB3()
{

document.getElementById('EbeneB3').innerHTML =

"      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table220 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table221 >"+
     "         <!-- t1 -->"+


      "        <!--main navigation--><!-- spacer -->"+
       "       <tr>"+
        "        <td bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
          "      <td bgcolor= #B5C6DA >"+
           "     <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
            "  </tr>"+
             " <tr>"+
 "               <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
  "              <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
   "           </tr>"+
    "          <!-- spacer -->"+
     "         <tr bgcolor= #d5d5d5 >"+
      "          <td bgcolor= #B5C6DA >"+
       "         <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "        <td bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
            "  <!-- spacer -->"+
"              <tr>"+
 "               <td>"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
   "             <td width= 174 >"+
    "           </td>"+
  

 "        <tr>"+
  "              <td bgcolor= #D5D5D5  height= 1 >"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td height= 1  bgcolor= #D5D5D5 >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+



 "             </tr>"+
  "            <tr>"+
   "             <td>"+
    "            <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
     "           <td width= 174 >"+
      "          <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  height= 152  id= table222 >"+
       "          <tr>"+
        "           <td></td>"+
         "          <td valign=top></td>"+
           "        <td> "+
            "       <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
             "    </tr>"+
             
"     <!-- M.O.B.I.L.I.S. -->"+             
              "   <tr>"+
               "    <td height= 17 >"+
                "   <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
                 "  <td valign=top height= 1  bgcolor= #153B62 >"+
 "                  <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
  "                 <td width= 153  class= leftNav  height= 1  bgcolor= #153B62 >"+
   "                <a href= ../schulungen/mobilis.htm >Übergewicht&nbsp; &amp;&nbsp; "+
    "               M.O.B.I.L.I.S.&nbsp;&nbsp;</a></td>"+
     "            </tr>"+

"     <!-- Ernährung -->"+
          "       <tr>"+
           "        <td height= 17 >"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign= top  height= 9 >"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav  height= 9 >"+
                "   <a href= ../schulungen/ernaehrung.htm >"+
                 "  Ernährung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <!--3. level --><!--3. level End -->"+
 
"     <!-- Lehrküche -->"+
  "               <tr>"+
   "                <td height= 17 >"+
    "               <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign= top  height= 17 >"+
      "             <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "            <td width= 153  class= leftNav  height= 17 >"+
        "           <a href= ../schulungen/lehrkueche.htm >Lehrküche&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
         "          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+
     
  "     <!-- Diabetikerschulung -->"+               
 "                <tr>"+
  "                 <td height= 17 >"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top height= 1 >"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav  height= 1 >"+
       "            <a href= ../schulungen/diabetes.htm >Diabetikerschulung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
        "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+

"     <!-- Gerinnungs-Selbstmessung -->"+
           "      <tr>"+
            "    <td height= 17 >"+
             "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign= top  height= 17 >"+
               "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                "   <td width= 153  class= leftNav  height= 17 >"+
                 "  <a href= ../schulungen/coaguchek.htm >"+
                  " Gerinnungs-Selbstmessung&nbsp; &nbsp;</a></td>"+
"                 </tr>"+

 
 
 "     <!-- Herzmuskelschwäche H.I.P. -->"+
      "           <tr>"+
       "            <td height= 17 >"+
        "           <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
         "          <td valign=top height= 5 >"+
          "         <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
           "        <td width= 153  class= leftNav  height= 5 >"+
            "       <a href= ../schulungen/hip.htm >Herzmuskelschwäche&nbsp; "+
             "      H.I.S.&nbsp;&nbsp;&nbsp;</a></td>"+
              "   </tr>"+
              
       
"     <!-- Hypertonie-Schulung -->"+       
        "         <tr>"+
         "          <td height= 17 >"+
          "         <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
           "        <td valign= top  height= 13  bgcolor= #153B62 >"+
            "       <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
             "      <td width= 153  class= leftNav  height= 13  bgcolor= #153B62 >"+
              "     <img border= 0  src= ../pics/std/x.gif  width= 1  height= 1 ><a href= ../schulungen/hypertonie.htm >Hypertonie "+
               "    - Schulung&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
                " </tr>"+
                
"     <!-- Lungenhochdruck PAH -->"+              
" 				  <tr>"+
"                   <td height= 17 >"+
 "                  <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
  "                 <td valign=top height= 1 >"+
   "                <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
    "               <td width= 153  class= leftNav  height= 1 >"+
     "              <a href= ../schulungen/pah.htm > Lungenhochdruck&nbsp;&nbsp;PAH&nbsp; "+
      "             &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
       "          </tr>"+

"     <!-- Asthma und COPD -->"+
 "                <tr>"+
  "                 <td height= 17 >"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign= top  height= 13  bgcolor= #153B62 >"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav  height= 13  bgcolor= #153B62 >"+
       "            <img border= 0  src= ../pics/std/x.gif  width= 1  height= 1 ><a href= ../schulungen/copd.htm >Asthma "+
        "           &amp; COPD&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
         "          </a></td>"+
          "       </tr>"+
          
"     <!-- Raucherentwöhnung -->"+
           "      <tr>"+
            "       <td height= 17 >"+
             "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign= top  height= 5 >"+
               "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                "   <td width= 153  class= leftNav  height= 5 >"+
                 "  <a href= ../schulungen/rauchen.htm >Raucherentwöhnung&nbsp;&nbsp;&nbsp;&nbsp; "+
                  " &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+

"     <!-- Rückenschule -->"+
  "               <tr>"+
   "                <td height= 17 >"+
    "               <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign= top  height= 17 >"+
      "             <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "            <td width= 153  class= leftNav  height= 17 >"+
        "           <a href= ../schulungen/ruecken.htm >"+
         "          Rückenschule&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+
          

"     <!-- Physiotherapie -->"+
          "       <tr>"+
           "        <td height= 17 >"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign= top  height= 17 >"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav  height= 17 >"+
                "   <a href= ../schulungen/physiotherapie.htm >Physiotherapie&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                 "  </a>&nbsp;</td>"+
 "                </tr>"+
 
"     <!-- Bewegungstherapie -->"+
          "       <tr>"+
           "        <td height= 17 >"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign= top  height= 17 >"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav  height= 17 >"+
                "   <a href= ../schulungen/herzsport.htm >Bewegungstherapie&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                 " </a>&nbsp;</td>"+
 "                </tr>"+
 
"     <!-- Aqua-Biking - Aqua-Cycling-->"+
          "       <tr>"+
           "        <td height= 17 >"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign= top  height= 17 >"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav  height= 17 >"+
                "   <a href= ../schulungen/aquacycling.htm >Aquabiking - Aquacycling&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
                 " </a>&nbsp;</td>"+
 "                </tr>"+

"     <!-- Nordic Walking -->"+
  "                 <td height= 17 >"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign= top  height= 8 >"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav  height= 8 >"+
       "            <a href= ../schulungen/nordic.htm >Nordic Walking&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
        "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+



"     <!-- Vorträge -->"+
           "      <tr>"+
            "       <td height= 17 >"+
             "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign= top  height= 17 >"+
               "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                "   <td width= 153  class= leftNav  height= 17 >"+
                 "  <a href= ../schulungen/vortraege.htm >Vorträge&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "+
                  " &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+

 "                <tr>"+
  "                 <td></td>"+
   "                <td valign=top></td>"+
    "               <td> "+
     "              <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
      "           </tr>"+
       "        </table></td>"+
        "      </tr>"+
         "     <!-- spacer -->"+
          "    <!-- spacer -->"+
           "   <!-- spacer -->"+
             " <tr>"+
              "  <td bgcolor= #D5D5D5  height= 1 >"+
"                <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
 "               <td height= 1  bgcolor= #D5D5D5 >"+
  "              <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
   "           </tr>"+
    "          <tr>"+
     "           <td colspan= 2 >"+
      "          <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
       "       </tr>"+
        "    </table>"+
         " </td>"+
"          <td width= 6  background= ../pics/std/shdw_r.gif >"+
 "         <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
  "        </tr>"+
   "     <tr>"+
    "      <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
     "     <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
      "  </tr>"+
"     </table>"
}

/////////////////////////////////////////





/////////////////////////////////////////


function containerC3()
{

document.getElementById('EbeneC3').innerHTML = 

"      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table223 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table224 >"+
     "         <!-- t1 -->"+


      "        <!--main navigation--><!-- spacer -->"+
       "       <tr>"+
        "        <td bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
          "      <td bgcolor= #B5C6DA >"+
           "     <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
            "  </tr>"+
             " <tr>"+
              "  <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
"                <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <tr bgcolor= #d5d5d5 >"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
      "          <td bgcolor= #B5C6DA >"+
       "         <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
        "      </tr>"+
         "     <!-- spacer -->"+
          "    <tr>"+
           "     <td>"+
            "    <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
             "   <td width= 174 >"+
              " </td>"+
               
"                <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 >"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td height= 1  bgcolor= #D5D5D5 >"+
    "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "         </tr>"+               
               
               
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table225 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../empfehlungen/ausdauer.htm >Ausdauertraining&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
"                    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../empfehlungen/rezepte.htm >Rezepte &amp;"+
        "            Ernährung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
         "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+
           "      <tr>"+
            "       <td></td>"+
             "      <td valign=top></td>"+
              "     <td> "+
               "    <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
                " </tr>"+
"                 <!--3. level --><!--3. level End -->"+
 "              </table></td>"+
  "            </tr>"+
   "           <!-- spacer -->"+
    "          <!-- spacer -->"+
     "         <!-- spacer -->"+
      "        <tr>"+
       "         <td bgcolor= #D5D5D5  height= 1 >"+
        "        <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
         "       <td height= 1  bgcolor= #D5D5D5 >"+
          "      <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
           "   </tr>"+
            "  <tr>"+
             "   <td colspan= 2 >"+
              "  <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
 "             </tr>"+
  "          </table>"+
   "       </td>"+
    "      <td width= 6  background= ../pics/std/shdw_r.gif >"+
     "     <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
      "    </tr>"+
       " <tr>"+
        "  <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
"          <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
 "       </tr>"+
  "    </table>"
 
}

/////////////////////////////////////////  


function containerD3()
{

document.getElementById('EbeneD3').innerHTML = 

"      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table226 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table227 >"+
     "         <!-- t1 -->"+


"              <!--main navigation--><!-- spacer -->"+
 "             <tr>"+
  "              <td bgcolor= #B5C6DA >"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <tr>"+
        "        <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <!-- spacer -->"+
            "  <tr bgcolor= #d5d5d5 >"+
             "   <td bgcolor= #B5C6DA >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               " <td bgcolor= #B5C6DA >"+
"                <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <tr>"+
    "            <td>"+
     "           <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
      "          <td width= 174 >"+
       "        </td>"+
        "                  <tr>"+
         "       <td bgcolor= #D5D5D5  height= 1 >"+
          "      <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
           "     <td height= 1  bgcolor= #D5D5D5 >"+
            "    <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
             " </tr>"+

               
               
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table228 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
  "           <img src= ../pics/std/x.gif width= 12 height= 17 border= 0></td>"+
   "                <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9 height= 12 border= 0></td>"+
    "               <td width= 153 class=leftNav>"+
     "              <a href= ../leistungen/indikationen.htm>Behandlungsindikationen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
      "           </tr>"+
       "          <tr>"+
        "           <td>"+    
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../leistungen/vorsorge.htm >Vorsorgeuntersuchungen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
                  "                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "           <a href=../leistungen/ambulant.htm>Ambulante"+
        "            Reha&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr><tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign=top>"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../leistungen/teilstationaer.htm >Ganztägig - ambulante"+
                 "   Reha&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign= top >"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../leistungen/dmp.htm >"+
        "           <img border= 0  src= ../pics/std/x.gif  width= 1  height= 1 >DMP"+
         "           -&nbsp; Disease M. Programme</a></td>"+
          "       </tr>"+
           "      <tr>"+
            "       <td>"+
             "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign= top >"+
               "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                "   <td width= 153  class= leftNav >"+
                 "  <img border= 0  src= ../pics/std/x.gif  width= 1  height= 1 ><a href= ../leistungen/wellness.htm ><img border= 0  src= ../pics/std/x.gif  width= 1  height= 1 >Wellness"+
                  "  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                   " &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign= top >"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../leistungen/diagnostik.htm >Diagnostik&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
        "         </tr>"+
         "        <!--3. level --><!--3. level End -->"+
          "       <tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign= top >"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../leistungen/therapie.htm >Therapie&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
                 "</tr>"+
"                 <tr>"+
 "                  <td>"+
  "                 <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
   "                <td valign= top >"+
    "               <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
     "              <td width= 153  class= leftNav >"+
      "             <a href= ../leistungen/team.htm >Behandlungsteam&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
       "          </tr>"+
        "         <tr>"+
         "          <td></td>"+
          "         <td valign=top></td>"+
           "        <td> "+
            "       <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
             "    </tr>"+
              " </table></td>"+
"              </tr>"+
 "             <!-- spacer -->"+
  "            <!-- spacer -->"+
   "           <!-- spacer -->"+
    "          <tr>"+
     "           <td bgcolor= #D5D5D5  height= 1 >"+
      "          <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
       "         <td height= 1  bgcolor= #D5D5D5 >"+
        "        <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
         "     </tr>"+
          "    <tr>"+
           "     <td colspan= 2 >"+
            "    <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
             " </tr>"+
"            </table>"+
 "         </td>"+
  "        <td width= 6  background= ../pics/std/shdw_r.gif >"+
   "       <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
    "      </tr>"+
     "   <tr>"+
      "    <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
       "   <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
        "</tr>"+
 "     </table>"}

/////////////////////////////////

function containerE3()
{

document.getElementById('EbeneE3').innerHTML = 

"      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table154 >"+
"        <tr>"+
 "         <td>"+
  "          <!-- left navigation -->"+
   "      <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table155 >"+
    "          <!-- t1 -->"+


     "         <!--main navigation--><!-- spacer -->"+
      "        <tr>"+
       "         <td bgcolor= #B5C6DA ><img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "        <td bgcolor= #B5C6DA ><img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
         "     </tr>"+
          "    <tr>"+
           "     <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
            "    <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
             " </tr>"+
"              <!-- spacer -->"+
 "             <tr bgcolor= #d5d5d5 >"+
  "              <td bgcolor= #B5C6DA ><img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td bgcolor= #B5C6DA ><img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
    "          </tr>"+
     "         <!-- spacer -->"+
      "        <tr>"+
       "         <td><img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
        "        <td width= 174 >"+
         "      </td>"+
               
               
"               <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 ><img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
  "              <td height= 1  bgcolor= #D5D5D5 ><img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
   "           </tr>"+
           
               
               
"              </tr>"+
 "             <tr>"+
  "              <td><img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
   "             <td width= 174 >"+
    "            <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table156 >"+
     "            <tr>"+
      "             <td></td>"+
       "            <td valign=top></td>"+
        "           <td> <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
         "        </tr>"+
          "       <tr>"+
           "        <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
            "       <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
             "      <td width= 153  class= leftNav >"+
              "     <a href= ../klinik/allginfos.htm >Allgemeine&nbsp;Informationen&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
               "  </tr>"+
                " <tr>"+
"                   <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
 "                  <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
  "                 <td width= 153  class= leftNav >"+
   "                <a href= ../klinik/leitbild.htm >Leitbild&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
    "             </tr>"+
     "            <tr>"+
      "             <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
       "            <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
        "           <td width= 153  class= leftNav >"+
         "          <a href= ../klinik/zertifizierung.htm >Zertifizierung&nbsp;"+
          "          &amp;&nbsp; QM&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
              "     <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../klinik/ausstattung.htm >Ausstattung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td height= 13 ><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
   "                <td valign= top  height= 13 ><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
    "               <td width= 153  class= leftNav  height= 13 >"+
     "              <a href= ../klinik/kapelle.htm >Gottesdienste&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
      "              &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;"+
       "             &nbsp;</a></td>"+
        "         </tr>"+
         "        <tr>"+
          "         <td height= 13 ><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
           "        <td valign= top  height= 13 ><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
            "       <td width= 153  class= leftNav  height= 13 >"+
             "      <a href= ../klinik/freizeit.htm >Freizeitgestaltung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
              "   </tr>"+
               "  <tr>"+
                "   <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
                 "  <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
"                   <td width= 153  class= leftNav >"+
 "                  <a href= ../klinik/kueche.htm >Speisesaal&nbsp;"+
  "                  &amp;&nbsp; Küche&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
   "                 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
    "             </tr>"+
     "            <tr>"+
      "             <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
       "            <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
        "           <td width= 153  class= leftNav >"+
         "          <a href= ../klinik/cafeteria.htm >Caféteria"+
          "          &amp;"+
           "         Kiosk&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
            "     </tr>"+
             "    <tr>"+
              "     <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                "   <td width= 153  class= leftNav >"+
                 "  <a href= ../klinik/bilder.htm >Klinik"+
"                    in"+
 "                   Bildern&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
  "               </tr>"+
   "              <tr>"+
    "               <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign=top><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav ><a href= ../klinik/lage.htm >Lage&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
       "          </tr>"+
        "         <tr>"+
         "          <td><img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
          "         <td valign= top ><img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
           "        <td width= 153  class= leftNav >"+
            "       <a href= ../klinik/anfahrt2.htm >Anreise&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
"                 <tr>"+
 "                  <td></td>"+
  "                 <td valign=top></td>"+
   "                <td> "+
    "               <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
     "            </tr>"+
      "           <!--3. level --><!--3. level End -->"+
       "        </table></td>"+
        "      </tr>"+
         "     <!-- spacer -->"+
          "    <!-- spacer -->"+
           "   <!-- spacer -->"+
            "  <tr>"+
             "   <td bgcolor= #D5D5D5  height= 1 >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
"                <td height= 1  bgcolor= #D5D5D5 >"+
 "               <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
  "            </tr>"+
   "           <tr>"+
    "            <td colspan= 2 >"+
     "           <img src= ../pics/std/x.gif  width= 180  height= 5"+
      "            border= 0 ></td>"+
       "       </tr>"+
        "    </table>"+
         " </td>"+
"          <td width= 6  background= ../pics/std/shdw_r.gif >"+
 "         <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
  "        </tr>"+
   "     <tr>"+
    "      <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
     "     <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
      "  </tr>"+
"      </table>"
    
    }
    
    
    /////////////////////////
    
function containerF3()
{

document.getElementById('EbeneF3').innerHTML = 

"      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table232 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table233 >"+
     "         <!-- t1 -->"+

"              <!--main navigation--><!-- spacer -->"+
 "             <tr>"+
  "              <td bgcolor= #B5C6DA >"+ 
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <tr>"+    
        "        <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <!-- spacer -->"+
            "  <tr bgcolor= #d5d5d5 >"+
             "   <td bgcolor= #B5C6DA >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               " <td bgcolor= #B5C6DA >"+
"                <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <tr>"+
    "            <td>"+
     "           <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
      "          <td width= 174 >"+
       "        </td>"+
         
"                 <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 >"+
  "            <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "           <td height= 1  bgcolor= #D5D5D5 >"+
    "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "         </tr>"+

               
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table234 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../aerzte/chefarzt.htm >Chefarzt"+
"                  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
 "                   &nbsp;&nbsp;</a></td>"+
  "               </tr>"+
   "              <tr>"+
    "               <td>"+
     "              <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
      "             <td valign=top>"+
       "            <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
        "           <td width= 153  class= leftNav >"+
         "          <a href= ../aerzte/sprechstunden.htm >Sprechstunden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
          "          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../aerzte/vorsorgeunters.htm >Vorsorgeuntersuchungen"+
                   " &nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../aerzte/aerzteteam.htm >Ärzteteam&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
        "            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+
          "       <tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign=top>"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../aerzte/pflegeteam.htm >Pflegeteam&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                 "   &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                  "  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td></td>"+
   "                <td valign=top></td>"+
    "               <td> "+
     "              <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
      "           </tr>"+
       "          <!--3. level --><!--3. level End -->"+
        "       </table></td>"+
         "     </tr>"+
          "    <!-- spacer -->"+
           "   <!-- spacer -->"+
            "  <!-- spacer -->"+
             " <tr>"+
              "  <td bgcolor= #D5D5D5  height= 1 >"+
               " <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
"                <td height= 1  bgcolor= #D5D5D5 >"+
 "               <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
  "            </tr>"+
   "           <tr>"+
    "            <td colspan= 2 >"+
     "           <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
      "        </tr>"+
       "     </table>"+
        "  </td>"+
"          <td width= 6  background= ../pics/std/shdw_r.gif >"+
 "         <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
  "        </tr>"+
   "     <tr>"+
    "      <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
     "     <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
      "  </tr>"+
"      </table>"
 
 }
 
 
 //////////////////////////////////////////////
 
function containerG3()
{

document.getElementById('EbeneG3').innerHTML = 
 
 "      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table235 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table236 >"+
     "         <!-- t1 -->"+


"              <!--main navigation--><!-- spacer -->"+
 "             <tr>"+
  "              <td bgcolor= #B5C6DA >"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <tr>"+
        "        <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <!-- spacer -->"+
            "  <tr bgcolor= #d5d5d5 >"+
             "   <td bgcolor= #B5C6DA >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               " <td bgcolor= #B5C6DA >"+
                "<img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
"              </tr>"+
 "             <!-- spacer -->"+
  "            <tr>"+
   "             <td>"+
    "            <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
     "           <td width= 174 >"+
      "         </td>"+
               
"                <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 >"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td height= 1  bgcolor= #D5D5D5 >"+
    "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "         </tr>"+
          
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "            <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table237 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+


 					"     <!-- Informationen zur Aufnahme -->"+

            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../aufnahme/infos.htm >Informationen&nbsp;zur"+
                   " Aufnahme&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+


 					"     <!-- Infos zur Kostenübernahme -->"+


 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../aufnahme/kostentraeger.htm >Infos"+
        "            zur Kostenübernahme&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+
         
         
 					"     <!-- Wunsch- und Wahlrecht -->"+


 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../aufnahme/wahlrecht.htm >Wunsch-"+
        "            und Wahlrecht&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;</a></td>"+
         "        </tr>"+


 					"     <!-- Reservierungen -->"+
 					
          "       <tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign=top>"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../aufnahme/reservierungen.htm >Anmeldung"+
                 "   &amp; Reservierung&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                 </tr>"+
 "                <!--3. level --><!--3. level End -->"+



 					"     <!-- Begleitpersonen+ Gäste. -->"+

  "               <tr>"+
   "                <td>"+
    "               <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign=top>"+
      "             <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "            <td width= 153  class= leftNav >"+
        "           <a href= ../aufnahme/gaeste.htm >Begleitpersonen"+
         "           &amp; Gäste&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+


           "      <tr>"+
            "       <td></td>"+
             "      <td valign=top></td>"+
              "     <td> "+
               "    <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
                " </tr>"+
"               </table></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <!-- spacer -->"+
    "          <!-- spacer -->"+
     "         <tr>"+
      "          <td bgcolor= #D5D5D5  height= 1 >"+
       "         <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "        <td height= 1  bgcolor= #D5D5D5 >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <tr>"+
            "    <td colspan= 2 >"+
             "   <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
"              </tr>"+
 "           </table>"+
  "        </td>"+
   "       <td width= 6  background= ../pics/std/shdw_r.gif >"+
    "      <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
     "     </tr>"+
      "  <tr>"+
       "   <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
        "  <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
"        </tr>"+
 "     </table>"
  }
//////////////////////////////////////////////////////////////  
 
 

 
function containerH3()
{

document.getElementById('EbeneH3').innerHTML = 
 
 "     <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table238 >"+
 "        <tr>"+
  "         <td>"+
   "          <!-- left navigation -->"+
    "         <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table239 >"+
     "          <!-- t1 -->"+


"               <!--main navigation--><!-- spacer -->"+
 "              <tr>"+
  "               <td bgcolor= #B5C6DA >"+
   "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "             <td bgcolor= #B5C6DA >"+
     "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "         </tr>"+
       "        <tr>"+
        "         <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "        <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "     </tr>"+
           "    <!-- spacer -->"+
            "   <tr bgcolor= #d5d5d5 >"+
             "    <td bgcolor= #B5C6DA >"+
              "   <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               "  <td bgcolor= #B5C6DA >"+
                " <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
"               </tr>"+
 "              <!-- spacer -->"+
  "             <tr>"+
   "              <td>"+
    "             <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
     "            <td width= 174 >"+
      "          </td>"+
               
"                           <tr>"+
 "                <td bgcolor= #D5D5D5  height= 1 >"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td height= 1  bgcolor= #D5D5D5 >"+
    "             <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "          </tr>"+

               
"               </tr>"+
 "              <tr>"+
  "               <td>"+
   "              <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "             <td width= 174 >"+
     "            <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table240 >"+
      "            <tr>"+
       "             <td></td>"+
        "            <td valign=top></td>"+
         "           <td> "+
          "          <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "       </tr>"+
            "      <tr>"+
             "       <td>"+
              "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "     <td valign=top>"+
                "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "   <td width= 153  class= leftNav >"+
                  "  <a href= ../verwaltung/leitung.htm >Klinikleitung&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                   "  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                    " &nbsp;</a></td>"+
"                  </tr>"+
 "                 <!--3. level --><!--3. level End -->"+
  "                <tr>"+
   "                 <td>"+
    "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "               <td valign=top>"+
      "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "             <td width= 153  class= leftNav >"+
        "            <a href= ../verwaltung/hauswirtschaft.htm >Hauswirtschaft&nbsp;&nbsp;"+
         "            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
          "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
           "       </tr>"+
            "      <tr>"+
             "       <td>"+
              "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "     <td valign=top>"+
                "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "   <td width= 153  class= leftNav >"+
                  "  <a href= ../verwaltung/technik.htm >Technischer"+
                   "  Dienst&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
"                  </tr>"+

"                    <tr>"+
             "       <td>"+
              "      <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "     <td valign=top>"+
                "    <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "   <td width= 153  class= leftNav >"+
                  "  <a href= ../verwaltung/stellen.htm >Stellenangebote&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>" +
"                  </tr>"+

 "                 <tr>"+
  "                  <td></td>"+
   "                 <td valign=top></td>"+
    "                <td> "+
     "               <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
      "            </tr>"+
       "         </table></td>"+
        "       </tr>"+
         "      <!-- spacer -->"+
          "     <!-- spacer -->"+
           "    <!-- spacer -->"+
            "   <tr>"+
             "    <td bgcolor= #D5D5D5  height= 1 >"+
              "   <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               "  <td height= 1  bgcolor= #D5D5D5 >"+
                " <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
"               </tr>"+
 "              <tr>"+
  "               <td colspan= 2 >"+
   "              <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
    "           </tr>"+
     "        </table>"+
      "     </td>"+
       "    <td width= 6  background= ../pics/std/shdw_r.gif >"+
        "   <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
         "  </tr>"+
"         <tr>"+
 "          <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
  "         <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
   "      </tr>"+
    "   </table>" 
  }    
  
  
  ////////////////////////////////////////////
  
  
  function containerE5()
{

document.getElementById('EbeneE5').innerHTML = 
 
 "      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table235 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table236 >"+
     "         <!-- t1 -->"+


"              <!--main navigation--><!-- spacer -->"+
 "             <tr>"+
  "              <td bgcolor= #B5C6DA >"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <tr>"+
        "        <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <!-- spacer -->"+
            "  <tr bgcolor= #d5d5d5 >"+
             "   <td bgcolor= #B5C6DA >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               " <td bgcolor= #B5C6DA >"+
                "<img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
"              </tr>"+
 "             <!-- spacer -->"+
  "            <tr>"+
   "             <td>"+
    "            <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
     "           <td width= 174 >"+
      "         </td>"+
               
"                <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 >"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td height= 1  bgcolor= #D5D5D5 >"+
    "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "         </tr>"+
          
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "            <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table237 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../klinik/nichtautofahrer.htm >für Nichtautofahrer&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                   " </a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../klinik/westen.htm >von Westen und Norden &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;"+
        "            </a></td>"+
         "        </tr>"+
          "       <tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign=top>"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../klinik/sueden.htm >von Süden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                 "   </a></td>"+
"                 </tr>"+
 "                <!--3. level --><!--3. level End -->"+
  "               <tr>"+
   "                <td>"+
    "               <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign=top>"+
      "             <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "            <td width= 153  class= leftNav >"+
        "           <a href= ../klinik/osten.htm >von Osten"+
         "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+
           "      <tr>"+
            "       <td></td>"+
             "      <td valign=top></td>"+
              "     <td> "+
               "    <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
                " </tr>"+
"               </table></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <!-- spacer -->"+
    "          <!-- spacer -->"+
     "         <tr>"+
      "          <td bgcolor= #D5D5D5  height= 1 >"+
       "         <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "        <td height= 1  bgcolor= #D5D5D5 >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <tr>"+
            "    <td colspan= 2 >"+
             "   <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
"              </tr>"+
 "           </table>"+
  "        </td>"+
   "       <td width= 6  background= ../pics/std/shdw_r.gif >"+
    "      <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
     "     </tr>"+
      "  <tr>"+
       "   <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
        "  <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
"        </tr>"+
 "     </table>"
  }
//////////////////////////////////////////////////////////////  

 function containerU3()
{

document.getElementById('EbeneU3').innerHTML = 
 
 "      <table width= 186  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table235 >"+
 "       <tr>"+
  "        <td>"+
   "         <!-- left navigation -->"+
    "        <table width= 180  align= left  cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  id= table236 >"+
     "         <!-- t1 -->"+


"              <!--main navigation--><!-- spacer -->"+
 "             <tr>"+
  "              <td bgcolor= #B5C6DA >"+
   "             <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
    "            <td bgcolor= #B5C6DA >"+
     "           <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
      "        </tr>"+
       "       <tr>"+
        "        <td colspan= 2  height= 2  bgcolor= #B5C6DA >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <!-- spacer -->"+
            "  <tr bgcolor= #d5d5d5 >"+
             "   <td bgcolor= #B5C6DA >"+
              "  <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
               " <td bgcolor= #B5C6DA >"+
                "<img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
"              </tr>"+
 "             <!-- spacer -->"+
  "            <tr>"+
   "             <td>"+
    "            <img src= ../pics/std/x.gif  width= 6  height= 5  border= 0 ></td>"+
     "           <td width= 174 >"+
      "         </td>"+
               
"                <tr>"+
 "               <td bgcolor= #D5D5D5  height= 1 >"+
  "              <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
   "             <td height= 1  bgcolor= #D5D5D5 >"+
    "            <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
     "         </tr>"+
          
"              </tr>"+
 "             <tr>"+
  "              <td>"+
   "            <img src= ../pics/std/x.gif  width= 6  height= 17  border= 0 ></td>"+
    "            <td width= 174 >"+
     "           <table cellspacing= 0  cellpadding= 0  border= 0  bgcolor= #153b62  width= 100%  id= table237 >"+
      "           <tr>"+
       "            <td></td>"+
        "           <td valign=top></td>"+
         "          <td> "+
          "         <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
           "      </tr>"+
            "     <tr>"+
             "      <td>"+
              "     <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
               "    <td valign=top>"+
                "   <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
                 "  <td width= 153  class= leftNav >"+
                  " <a href= ../klinik/nichtautofahrer.htm >für Nichtautofahrer&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                   " </a></td>"+
"                 </tr>"+
 "                <tr>"+
  "                 <td>"+
   "                <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
    "               <td valign=top>"+
     "              <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
      "             <td width= 153  class= leftNav >"+
       "            <a href= ../klinik/westen.htm >von Westen und Norden &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;"+
        "            </a></td>"+
         "        </tr>"+
          "       <tr>"+
           "        <td>"+
            "       <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
             "      <td valign=top>"+
              "     <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
               "    <td width= 153  class= leftNav >"+
                "   <a href= ../klinik/sueden.htm >von Süden&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+
                 "   </a></td>"+
"                 </tr>"+
 "                <!--3. level --><!--3. level End -->"+
  "               <tr>"+
   "                <td>"+
    "               <img src= ../pics/std/x.gif  width= 12  height= 17  border= 0 ></td>"+
     "              <td valign=top>"+
      "             <img src= ../pics/std/arw_r_s.gif  width= 9  height= 12  border= 0 ></td>"+
       "            <td width= 153  class= leftNav >"+
        "           <a href= ../klinik/osten.htm >von Osten"+
         "           &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</a></td>"+
          "       </tr>"+
           "      <tr>"+
            "       <td></td>"+
             "      <td valign=top></td>"+
              "     <td> "+
               "    <img src= ../pics/std/x.gif  width= 153  height= 5  border= 0 width= 153 ></td>"+
                " </tr>"+
"               </table></td>"+
 "             </tr>"+
  "            <!-- spacer -->"+
   "           <!-- spacer -->"+
    "          <!-- spacer -->"+
     "         <tr>"+
      "          <td bgcolor= #D5D5D5  height= 1 >"+
       "         <img src= ../pics/std/x.gif  width= 6  height= 1  border= 0 ></td>"+
        "        <td height= 1  bgcolor= #D5D5D5 >"+
         "       <img src= ../pics/std/x.gif  width= 174  height= 1  border= 0 ></td>"+
          "    </tr>"+
           "   <tr>"+
            "    <td colspan= 2 >"+
             "   <img src= ../pics/std/x.gif  width= 180  height= 5  border= 0 ></td>"+
"              </tr>"+
 "           </table>"+
  "        </td>"+
   "       <td width= 6  background= ../pics/std/shdw_r.gif >"+
    "      <img src= ../pics/std/x.gif  width= 6  border= 0 ></td>"+
     "     </tr>"+
      "  <tr>"+
       "   <td colspan= 2  height= 6  bgcolor= #B5C6DA >"+
        "  <img src= ../pics/std/shdw_b1.gif  width= 186  height= 6  border= 0 ></td>"+
"        </tr>"+
 "     </table>"
  }
//////////////////////////////////////////////////////////////  


 function containerBlinker1()
 
{
document.getElementById('Blinker1').innerHTML =

			"<p align= center >" +
			 "<a title= 'CoaguChek-Seminar' href= ../schulungen/coaguchek.htm >" +
			 "<font face=Arial size= 3 ><b>07.06. und 14.06.2010:<br>" +
			 "<font color= #FF0000 >Seminar &quot;CoaguChek&quot;- Schulung</font><br>" +
			 "</b></font><font size= 1 >mehr</font></a> "			
			 }
//////////////////////////////////////////////////////////////  
	 
function containerBlinker2()


{
document.getElementById('Blinker2').innerHTML =
			 
			 "<p align= center >"+
			"<a title= 'Neues Reha-Angebot !'  href= ../aktuelles/aktuelles.htm >"+
			"<font face=Arial size= 3 ><b><font color= #FF0000 >Pneumologische Ambulante Reha<br>"+
			"<font color= #FF0000> (PAR) </font><br>"+
			"</b></font><font size= 1 >mehr</font></a>"
 }

//////////////////////////////////////////////////////////////  

function containerBlinker3()
 
{


document.getElementById('Blinker3').innerHTML = "<p align= center >"+
			"<a title= 'Aquabiking' target=_blank href= ../schulungen/Aquabiking.pdf >"+
			"<font face=Arial size= 3 ><b>Aquacycling<br>Aquabiking<br>"+
			"<font color= #FF0000 >jetzt neu</font><br>"+
			"</b></font><font size= 1 >mehr</font></a>"
			
			//window.setTimeout("containerBlinkerTest()", 2000);			 


/*
document.getElementById('Blinker3').innerHTML = "<p align= center >"+
			"<a title= 'Patientenseminar' target=_blank href= ../aktuelles/Pat-Seminar_12.11.2009.pdf >"+
			 "<font size= 3 ><b>12.11.2009:<br>" +
			 "<font color= #FF0000 >Patientenseminar Herzschwäche</font><br>" +
			 "</b></font><font size= 1 >mehr</font></a> "	
			 */			
  }
 
//////////////////////////////////////////////////////////////  
 function containerBlinker4()
 
{
document.getElementById('Blinker4').innerHTML = "<p align= center >"+
			"<a title= 'SAMA-Fortbildung' target=_blank href= ../aktuelles/SAMA_03.11.2008_Programm.pdf >"+
			"<font size= 2 ><b>03.11.2008: <font color= #FF0000 >SAMA-Fortbildung<br>"+
			"<font color= #FF0000 font size= 3>Rehamedizin und Arbeitsmedizin</font><br>"+
			"</b></font><font size= 1 >mehr</font></a>"
		 
			
 }
//////////////////////////////////////////////////////////////  

function containerBlinkerTest()
 
{

cont2 =    "<p align= center >"+
			"<a title= 'Neues Reha-Angebot !'  href= ../aktuelles/aktuelles.htm >"+
			"<font size= 3 ><b>15.09.2008: <font color= #FF0000 >Eröffnung<br>"+
			"<font face=Arial size=3 ><b><font color= #FF0000 >Die Pneumologische Ambulante Reha (PAR)<br>"+
			"<font color= #FF0000 >ist eröffnet !</font><br>"+
			"</b></font><font size= 1 >mehr</font></a>"

document.getElementById('Blinker3').innerHTML = cont2
window.setTimeout("containerBlinker3()", 2000);				 
			
 }

//////////////////////////////////////////////////////////////  

