/* BILD EXPLORER ANZEIGEN */
function bild(bildname){

  if(bildname=="fruechte"){
    url = "coco/fruechte_g.asp", breite = 305, hoehe = 380;
  }
  if(bildname=="sambataenzerinnen"){
    url = "coco/sambataenzerinnen_g.asp", breite = 271, hoehe = 380;
  }
  if(bildname=="capoeira"){
    url = "coco/capoeira_g.asp", breite = 556, hoehe = 380;
  }
  if(bildname=="strand"){
    url = "coco/strand_g.asp", breite = 507, hoehe = 380;
  }
  if(bildname=="verarbeitung"){
    url = "coco/verarbeitung_g.asp", breite = 561, hoehe = 380;
  }
  if(bildname=="tank"){
    url = "coco/tank_g.asp", breite = 592, hoehe = 380;
  }
  if(bildname=="abfuellen"){
    url = "coco/abfuellen_g.asp", breite = 508, hoehe = 380;
  }
  
  url="http://www.drinkcoco.com/" + url;
  var posX=(screen.availWidth-breite)/2;
  var posY=(screen.availHeight-hoehe)/2;
  if(bildname=="fruechte"){
    fruechte=window.open((url),"fruechte","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    fruechte.focus();
  }
  if(bildname=="sambataenzerinnen"){
    sambataenzerinnen=window.open((url),"sambataenzerinnen","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    sambataenzerinnen.focus();
  }
  if(bildname=="capoeira"){
    capoeira=window.open((url),"capoeira","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    capoeira.focus();
  }

  if(bildname=="strand"){
    strand=window.open((url),"strand","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    strand.focus();
  }

  if(bildname=="verarbeitung"){
    verarbeitung=window.open((url),"verarbeitung","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    verarbeitung.focus();
  }

  if(bildname=="tank"){
    tank=window.open((url),"tank","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    tank.focus();
  }

  if(bildname=="abfuellen"){
    abfuellen=window.open((url),"abfuellen","toolbar=no,width=" + breite +",height=" + hoehe +",directories=no,status=no,scrollbars=no,resize=no,resizable=no,menubar=no,screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "");
    abfuellen.focus();
  }

}
