
 /* Newsletteranmeldung  */

 function EmailInvitation(email)
 {
  myemail = email;
  $(document).ready(function(){
      jQuery.facebox(function() {
          jQuery.get('<iframe width="550" height="299" src="/tools/newsletter/newsletter_request.php?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>')
       });
   });
 } 
 
 
