function openMap(){
	var win = window.open("map.php","Anfahrtsplan","top=20,left=20,width=600,height=660");
	win.focus();
	}
	
// Grafik Button wechseln
function Init() {
var inputs = document.getElementsByTagName("input");
for (var i = 0; i < inputs.length; i++) {
	if (inputs[i].type == "image") {
		inputs[i].src = "tpl/images/basket_bttm.gif";
		inputs[i].onmouseover = function() {
			this.src = "tpl/images/basket_bttmon.gif";
		}
		inputs[i].onmouseout = function() {
			this.src = "tpl/images/basket_bttm.gif";
		}
	}
}
}

// Checken, ob Ware abgeholt wird
function chkBox(){
if(document.Bestellung.elements[24].value == "Wird abgeholt"){
	document.Bestellung.elements[25].value = "Barzahlung";
	}
else{
	document.Bestellung.elements[25].value = "Rechnung";
	}


}

