if (document.images) {

Portrait = new Array();

Portrait[0]  = new Image();Portrait[0].src  = "../img/bernardo.jpg"
Portrait[1]  = new Image();Portrait[1].src  = "../img/gladbach.jpg"
Portrait[2]  = new Image();Portrait[2].src  = "../img/koerdt.jpg"
Portrait[3]  = new Image();Portrait[3].src  = "../img/arras.jpg"
Portrait[4]  = new Image();Portrait[4].src  = "../img/reball.jpg"
Portrait[5]  = new Image();Portrait[5].src  = "../img/schulz.jpg"
Portrait[6]  = new Image();Portrait[6].src  = "../img/halilovic.jpg"
Portrait[7]  = new Image();Portrait[7].src  = "../img/ines.jpg"
Portrait[8]  = new Image();Portrait[8].src  = "../img/blank.gif"

}


function Change(x) 
{	if (document.images)
				document.images[1].src = Portrait[x].src;
}

function show(person) {
 if(document.getElementById)
   document.getElementById(person).style.display = "inline";}
  
function hide(person) {
 if(document.getElementById)
   document.getElementById(person).style.display = "none";}
   
function checkFramecall() {
  var FrameContent=location.search;
  if(FrameContent)
  top.content.location.href=FrameContent.substring(1,FrameContent.length);
 }
 
 function checkFrameset() {
  if(!top.content)
   location.href="/index.html?" + location.pathname;
 }
