function ladenImages()
{
	var Anzahl = ladenImages.arguments.length;
	var preImg = new Array();
	
	for (i=0;i<Anzahl;i++)
	{
			preImg[i] = new Image;
			preImg[i].src = ladenImages.arguments[i];
	}
}

function Bildwechsel(BildName,BildNeu,Ebene)
{
	if (Ebene == 0)	eval("document."+BildName+".src = 'buttons/"+BildNeu+".gif'");
	if (Ebene == 1)	eval("document."+BildName+".src = 'images/"+BildNeu+".jpg'");
}

function chkFormular()
{
   if(document.Formular.Nachname.value == "")
      {
       alert("Please fill in your Family Name!");
       document.Formular.Nachname.focus();
       return false;
      }
     if(document.Formular.Telefon.value == "")
      {
       alert("Please fill in your Telephone-Number!!");
       document.Formular.Telefon.focus();
       return false;
      }
}


function fenster(popup) 
{
switch (popup)
{
case 0: window.open("popup-impressum.html","fenster","width=280,height=400");
        break;		
					
}
}

function openwindowlink(a,b)
{
window.open(a,'',b)
}

function displayStatusMsg(msgStr)
{ 
  status=msgStr;
  document.returnValue = true;
}


function warenkorbloeschen() {
		index = document.cookie.indexOf("Warenkorb");
		document.cookie="Warenkorb=.";

		if (document.cookie) {
                } else {
                  alert('Sie haben die Verwendung von Cookies deaktiviert.\nDer Onlineshop benötigt aber unbedingt Cookies, um Ihre Bestellung zu speichern.\nBitte aktivieren Sie in Ihrem Browser die Verwendung von Cookies und laden Sie die Shopseiten neu!');
                }

}

