window.name="MainWindow";
function showgrafic(pageurl,winwidth,winheight) {
         graficshow=window.open (
             "showgrafic.php?pic="+pageurl,
             "ShopImage",
             "toolbar=no,"
            +"scrollbars=no,"
            +"location=no,"
            +"resizable=no,"
            +"width="+winwidth
            +",height="+winheight
         );
}
function changeFoto(fotoNum) {
         hideAllFotos();
         document.getElementById("pic" + fotoNum).style.position = "static";
}
function hideAllFotos() {
         var a = 0;
         while (document.getElementById("pic" + a)) {
               document.getElementById("pic" + a).style.position = "absolute";
               a++;
         }
}
function openShopWindow() {
         shopshow=window.open (
             "",
             "Shopwindow",
             "toolbar=no,"
            +"scrollbars=no,"
            +"location=no,"
            +"resizable=yes,"
            +"width=400,height=300"
         );
}
function checkLager() {
         if ((1*inputbasket.units.value) != inputbasket.units.value) inputbasket.units.value = 1;
         if ((1*inputbasket.units.value) > (1*inputbasket.aufLager.value)) {
            inputbasket.units.value = inputbasket.aufLager.value;
            if (inputbasket.language.value == "de") {
               document.getElementById("aufLager").innerHTML = "<b>Nur noch " + inputbasket.aufLager.value + " auf Lager!</b><br><br>";
            } else {
               document.getElementById("aufLager").innerHTML = "<b>Only " + inputbasket.aufLager.value + " available!</b><br><br>";
            }
         }
         window.setTimeout("checkLager()",300);
}

