<!--
function fenster(bild,titel)
{
  msgWindow=open('',
	             'displayWindow',
				 'toolbar=no,width=530,height=530,screenX=70,screenY=0,directories=no,status=yes,scrollbars=yes,resize=no,menubar=no')
  //-- neues Fenster oeffnen
  msgWindow.document.open();
  msgWindow.focus();
     
  // Ausgabe beginnen
  msgWindow.document.write("<html>                                           ");
  msgWindow.document.write("<head>                                           ");
  msgWindow.document.write("<title>"+titel+"</title>                         ");
                                                               
  msgWindow.document.write("</head>                                          ");
  msgWindow.document.write("<body>                                           ");
  
  msgWindow.document.write("<center>                                         ");
  msgWindow.document.write("<a href='#' onclick='self.close()'>              ");
  msgWindow.document.write("<img src='" +bild + "' border=0 alt='Mit Klick zur&uuml;ck'></a>");
  msgWindow.document.write("</center>                                        ");
                                                               
  msgWindow.document.write("</body>                                          ");
  msgWindow.document.write("</html>                                          ");
  				 
}

// ändern der navigationsleiste beim clicken auf menü home
function chhnm()
{
parent.navi.location.href="navi.htm";
parent.main.location.href="../main/start/main.htm";
}

// ändern der navigationsleiste beim clicken auf menü profil
function chpnm()
{
parent.navi.location.href="navi_p.htm";
parent.main.location.href="../main/profil/uprofil.htm";
}
					
//Bild vergroessern 

function scope(grafikname)	{
					fenster=window.open(grafikname,"Detailansicht", width=400, height=500);
					}




function anzeigen() {
	document.t.breite.value=screen.width;
	document.t.hoehe.value=screen.height;
	document.t.tiefe.value=screen.colordepth;

	}

//-->