<!--
function fernstart(key, url) {

  var bild;
  for(i=0;i<document.SAVE.elements[key].length;++i)
  if(document.SAVE.elements[key].options[i].selected == true)
    {
    bild = document.SAVE.elements[key].options[i].text;
    }

  if (bild != "")
    {
    var strBild = url + bild;
    fern=window.open("","Fernsteuerung","width=400,height=350");
 		fern.location.href="/webcontent/bild.php?bildurl="+strBild;
    fern.focus();
    }
}

function changeRadio(changeId) {
  if (changeId == 1) document.SAVE.replaceimage1[1].checked = true;
  if (changeId == 2) document.SAVE.replaceimage2[1].checked = true;
  if (changeId == 3) document.SAVE.replaceimage3[1].checked = true;
}

var x;
function akt(nummer,status) {
  if (document.images || navigator.userAgent.indexOf("opera") != "-1")
    {
    document["form_img_"+nummer].src="../images/form_img_"+ nummer + "_" + status+".gif";
    }
}

function ShowGaleriePic(bild,w_breite,w_hoehe)
  {
  var abmessung = "width="+w_breite+",height="+w_hoehe;

  w = window.open("","Bild",abmessung);

  var wpfad = bild; 
  var d = w.document;
  w.focus();
  d.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">\n\n');
  d.write('<html>\n<head>\n<title>');
  d.write('Bild')
  d.write('</title>\n');
  d.write("<body style='margin:0; background:#fff;' onBlur=self.close()>\n");
  d.write('<img src="'+wpfad+'" alt="">\n');
  d.write('</body>\n</html>');
  d.close();
  }

function SaveNDo(statval,varText) {
  if (varText == 1) {
    //setText();
  }
  document.SAVE.SaveStat.value=statval;
}

-->