function Cardinfo(Card){
F2 = open("cardinfo.php?id="+Card,"Karteninfo","width=270,height=250,screenX=0,screenY=0,scrollbars",locationbar="no",menubar="no",resizeable="no");
    F2.focus();

}

// -------------------------------------------------------------------------------------------
// Normale Artikel, keine Karten

     function selectItem(newItem, newQuantity) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
//                           parent.basketframe.location.href = "basket.php?an="+newItem+"&aq="+newQuantity;
                             F2 = open("basket.php?an="+newItem+"&aq="+newQuantity,"Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }

// -------------------------------------------------------------------------------------------
// Karten normal
     function selectItem1(newItem, newQuantity) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
//                           parent.basketframe.location.href = "basket-card.php?an="+newItem+"&aq="+newQuantity;
                             F2 = open("basket-card.php?an="+newItem+"&aq="+newQuantity+"&ccat=normal","Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }

// -------------------------------------------------------------------------------------------
// Tagesangebote
     function selectItem2(newItem, newQuantity) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
//                           parent.basketframe.location.href = "basket-offers.php?an="+newItem+"&aq="+newQuantity;
                             F2 = open("basket-offers.php?an="+newItem+"&aq="+newQuantity,"Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }
     
// -------------------------------------------------------------------------------------------
// Karten, foils, specials
     function selectItem3(newItem, newQuantity, newLang, itemtype) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
                             F2 = open("basket-card.php?an="+newItem+"&aq="+newQuantity+"&al="+newLang+"&ccat="+itemtype,"Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }

// -------------------------------------------------------------------------------------------
// Karten von Reservierungsliste
     function selectItem4(newItem, newQuantity) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
                             F2 = open("basket-card.php?an="+newItem+"&aq="+newQuantity+"&ccat=reservierung","Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }

// -------------------------------------------------------------------------------------------
// Karten promos, die vom system nur artnr=2 hatten und jetzt per DB-ID weitergegeben werden
     function selectItem5(newItem, newQuantity, newLang, itemtype) {
                if (newQuantity < 1) {
                        rc = alert('Die eingegebene Menge ist inkorrekt');
                } else {
                             F2 = open("basket-card.php?an=DBID"+newItem+"&aq="+newQuantity+"&al="+newLang+"&ccat="+itemtype,"Warenkorb","width=450,height=200,screenX=0,screenY=0",locationbar="no",menubar="no",resizeable="no");//
                }
     }


