//################ ansehen-link für portfolio #######################

function openWin(w,h,pagetoload,windowname,scroller){
 if (scroller == null){
  scroller = "no";
 }
 if (windowname == null){
  windowname = "newWindow";
 }
 var spec = "directories=no,menubar=no,toolbar=no,status=no,scrollbars="+scroller+",resizable=no,width="+w+",height="+h;
 var newWin = window.open(pagetoload,windowname,spec)
 newWin.focus();
}


//################ Bildserie blättern ###############################

function bildzurueck()
{
  aktuell=aktuell-1;
  if (aktuell!=Anzahl-1) {document.getElementById("weiter").style.visibility="visible";}
  if (aktuell==0) {document.getElementById("zuruck").style.visibility="hidden";}
  window.document.images[1].src=Bild[aktuell].src;
}

function bildweiter()
{
  aktuell=aktuell+1;
  if (aktuell==Anzahl-1) {document.getElementById("weiter").style.visibility="hidden";}
  if (aktuell!=0) {document.getElementById("zuruck").style.visibility="visible";}
  window.document.images[1].src=Bild[aktuell].src;
}