
<!---


function Zeigen(Bild0,Titel0,Breite0,Hoehe0,text0)
{
   Bild = Bild0;
   Titel = Titel0;
   Breite = Breite0;
   Hoehe = Hoehe0;
   text=text0
   
   sichtbar()
}

function sichtbar(){

  
   Fenster_Hoehe = Hoehe + 0;
   Fenster_Breite = Breite + 0;
   Optionen = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,left=200,top=100,height='+Fenster_Hoehe+',width='+Fenster_Breite;
   neues_Fenster = window.open('','',Optionen)
   with (neues_Fenster) 
   {
      document.writeln('<HTML><HEAD><TITLE>' + Titel + '</TITLE></HEAD>');
      document.writeln('<BODY background="gif/background.gif" topmargin="0" leftmargin="0" marginwidth=0 marginheight=0>');
      document.writeln('<IMG SRC="'+Bild+'" WIDTH='+Breite+' HEIGHT='+(Hoehe-60)+' BORDER=1 Border-color=#000000 ALT="'+Titel+'">');
      document.writeln('<font color="#000066" size="1" face="Arial, Helvetica, sans-serif"><strong><br>&nbsp; &nbsp;'+text+'©2005 | KFS-PERFITT OBERFLÄCHENSERVICE<br>&nbsp; &nbsp;&nbsp;www.oberflaechenservice.de &middot; info@oberflaechenservice.de </strong></font>');
      document.writeln('</BODY></HTML>')
   }
}

//--->


