// JavaScript Document for Shop © 2006 by kcnb8 crossemdia

	
	function addToCart(which) {
		quantity = eval('document.getElementById("quantity_"+which).value');
		
		if(quantity != 0) {
			self.location.href = 'index.php?action=addtocart&item='+which+'&quantity='+quantity;
		}
	
	}


	function addProdCount(act,which) {
		
		var currentProdCount = eval("document.getElementById('"+which+"').value");
		
		if(act == 1 && currentProdCount < 999) {
			//document.getElementById('which').value++;
			eval("document.getElementById('"+which+"').value++");
		} else if (act == 0 && currentProdCount > 0) {
			//document.getElementById('which').value--;
			eval("document.getElementById('"+which+"').value--");
		}	
	}
	
	
	function checkForm() {
		
		d = document.basket_address;
		meldung = "Folgende(s) Feld(er) wurden nicht ausgefüllt:\n";
		
		if(d.firstname.value=="") {
			meldung += "- Vorname\n";
			d.firstname.style.border = '1px solid red';
			d.firstname.style.background = "#FF9999";
			d.firstname.focus();
		} else if(d.lastname.value=="") {
			meldung += "- Nachname\n";
			d.lastname.style.border = '1px solid red';
			d.lastname.style.background = "#FF9999";
			d.lastname.focus();
		} else if(d.street.value=="") {
			meldung += "- Strasse\n";
			d.street.style.border = '1px solid red';
			d.street.style.background = "#FF9999";
			d.street.focus();
		} else if(d.zip.value=="") {
			meldung += "- Postleitzahl\n";
			d.zip.style.border = '1px solid red';
			d.zip.style.background = "#FF9999";
			d.zip.focus();
		} else if(d.city.value=="") {
			meldung += "- Ort\n";
			d.city.style.border = '1px solid red';
			d.city.style.background = "#FF9999";
			d.city.focus();
		//} else if(d.country.value=="Select a Country") {
			//meldung += "- Country\n";
			//d.country.style.border = '1px solid red';
			//d.country.focus();
		} else if(d.tel.value=="") {
			meldung += "- Telefon\n";
			d.tel.style.border = '1px solid red';
			d.tel.style.background = "#FF9999";
			d.tel.focus();
		} else if(d.email.value=="") {
			meldung += "- E-Mail\n";
			d.email.style.border = '1px solid red';
			d.email.style.background = "#FF9999";
			d.email.focus();
		} else if(!d.agb.checked) {
			meldung += "- AGB\n";
			d.agb.style.border = '1px solid red';
			d.agb.focus();
			}
		
		if(meldung.length > 47) {
			alert(meldung);
			return false;
		} else {
			return true;
		}
	}