<!--
 var MYMA = null;
 var screen_h, screen_b, left_MYMA, top_MYMA, hoehe, breite;
 var attribs;
  
 function schliessen()
 {
  opener.MYMA=null;
  self.close();
 }
 function mmopen(url,name,format)
 {   
     //alert(format);     
     if(format == 0){hoehe = 340;breite = 240;}
     else if(format==1){hoehe = 240;breite = 340;}
     else{hoehe = 740;breite = 1018;} //MYMA Slogan
  
     //alert(url+" | "+name+" | "+hoehe+" | "+breite);
     mittig(hoehe,breite);
     lasVegas(url,attribs);
 }  
 function mittig(hoehe,breite)
 {
    //alert(hoehe+" | "+breite);
    if(!document.all){
    screen_h = window.outerHeight;
    screen_b = window.outerWidth;
    }
    else{
    screen_h = screen.availHeight;
    screen_b = screen.availWidth;
    }
    left_MYMA = screen_b / 2 - breite / 2;
    top_MYMA = screen_h / 2 - hoehe / 2;
    attribs = "top="+top_MYMA+",left="+left_MYMA+",width="+breite+",height="+hoehe+",scrollbars=yes,toolbar=no,directories=no,status=no,menubar=no,resizable=no,dependent=yes;";
    //alert(attribs);    
 }
 //---------------------------------------------------------
var flashWin = null;
function closewin() {
 if ( (navigator.userAgent.indexOf("MSIE 3") == -1) && ((navigator.userAgent.indexOf("2.") == -1) || (navigator.userAgent.indexOf("Mozilla") == -1)) ) {
  if(flashWin!=null) { 
    if(!flashWin.closed) {
      flashWin.close();
      flashWin=null;
    }
  }
 }
}
function lasVegas(url,attribs) {
  var winname;
  if ( (navigator.userAgent.indexOf("MSIE 3") == -1) && ((navigator.userAgent.indexOf("2.") == -1) || (navigator.userAgent.indexOf("Mozilla") == -1)) && (navigator.userAgent.indexOf("5") == -1) ) {
        winname=Math.round((Math.random()*1000));
        }
  else {
    winname='MYMA'; 
  }
  //alert(winname);
  closewin();
  flashWin = window.open(url,winname,attribs);
}
//---------------------------------------------------------  
//-->
