function SetPicture(Nr, P_Nr) {
  Galery[Nr] = Bilder[P_Nr];
  document.getElementById('Pic'+Nr).setAttribute("src", "12APP/APPS/"+Galery[Nr]+"/SlideShow.jpg");

  if(6>Nr){
    var NextNr = Math.round(((Nr*10)/10)+1);var NextP_Nr = Math.round(((P_Nr*10)/10)+1);
    if(NextP_Nr>=alle){NextP_Nr = 0;}setTimeout('SetPicture("'+NextNr+'", "'+NextP_Nr+'")',50);
  }
  else{ setTimeout('MoveFwd("0","0")',50); }
return
}
