function foto(bild,weite,hoehe)
  {
var popup = window.open('','','scrolling=no, toolbar=0,location=no,directories=no,status=0,menubar=no,scrollbars=0,resizable=no,copyhistory=no,width='+ weite +',height='+hoehe+',screenX=1,screenY=1,top=3,left=3');
var art = bild.substr(2,3);
var nummer = bild.substr(0,2)
var d = popup.document;
switch(art)
{
 case "ter":
 var titel = 'Terasse';
 break;
 case "flu":
 var titel = 'Flurbereich';
 break;
 case "stu":
 var titel = 'Wohnzimmer';
 break;
 case "sch":
 var titel = 'Schlafzimmer';
 break;
 case "kue":
 var titel = 'K&uuml;che';
 break;
 case "bad":
 var titel = 'Bad';
 break;
 default:
 var titel = ' ';
 break;
}

d.write('<html>');
d.write('<head><title> Ferienwohnung '  + nummer +': ' + titel + '</title></head>'); 
d.write('<body topmargin="0" leftmargin="0" marginwidth="0" marginheight="0">');
d.write('<img src=w' + bild +'.jpg width='+weite+' height='+hoehe+' alt=Ferienwohnung_'  + nummer +':' + titel + ' >');
d.write('</body></html>');
d.close();
 }
