function ChangeImg(path,bild,mode,ext,type) {
  if (document.images) {
    if (type != "") {
      document.images[bild + "_" + type].src = path + bild + mode + "." + ext;
    } else {
      document.images[bild].src = path + bild + mode + "." + ext;
    }
  }
}

function pdf(fuseaction) {
  var url = 'index.php?fuseaction=' + fuseaction + '&Content=pdf';
  var pdf = window.open(url,"PDF");
  pdf.location.href = url;
  pdf.focus;
}

function Popup(fuseaction,width,height) {
  window.open("index.php?fuseaction="+fuseaction+"&stoplayout=true","Popup","width=" + width + ",height=" + height + ",left=20,top=50,scrollbars=no,resizable=no");
}

function TellAFriend(fuseaction,cfa,querystring,title) {
  window.open("index.php?fuseaction="+fuseaction+"&cfa="+cfa+"&querystring="+querystring+"&pagetitle="+title,"TellAFriend","width=450,height=630,left=20,top=50,scrollbars=no,resizable=no");
}

function doPrint(fuseaction) {
  window.open("index.php?"+fuseaction+"&print=true","Print","width=617,height=580,left=10,top=10,scrollbars=yes,resizable=no");
}

function ClosePopup() {
  lay_popup.style.visibility = "hidden";
}

function openGallery(fuseaction,albumID,imgname) {
  window.open("index.php?fuseaction="+fuseaction+"&gallery="+albumID+"&image="+imgname,"Gallery","width=661,height=450,statusbar=no,scrollbars=no,resizable=no");
}
