
 /* Newsletteranmeldung  */

 function EmailInvitation(email)
 {
  myemail = email;
  $(document).ready(function(){
      jQuery.facebox(function() {
          jQuery.get('<iframe width="550" height="299" src="/AngebotEmpfehlenformular.html?email='+myemail+'" scrolling="no" frameborder="0"></iframe>', function(data) {
              jQuery.facebox(data);
          });
      });
  });
 }
 
 /* Rückrufservice  */

 function Rueckrufservice(aid)
 {
  myaid = aid;

   $(document).ready(function(){
       jQuery.facebox(function() {
           jQuery.facebox('<iframe width="705" height="420" src="/AngebotRueckrufformular.html?angebotsid='+myaid+'" scrolling="no" frameborder="0"></iframe>')
       });
   });
 } 
 

 /* AngebotKontaktformular  */

 function AngebotKontaktformular(aid)
 {
  myaid = aid;

   $(document).ready(function(){
       jQuery.facebox(function() {
           jQuery.facebox('<iframe width="705" height="420" src="/AngebotKontaktformular.html?angebotsid='+myaid+'" scrolling="no" frameborder="0"></iframe>')
       });
   });
 } 

 function popup (url, width, height) {
  fenster = window.open(url, "Popupfenster", "width="+width+",height="+height+",resizable=yes");
  fenster.focus();
  return false;
 }
 
