<!--
function hover(name) {
	window.status = name;
}

function check_order() {
	if (document.bestellung.zahlungsart.value == "nachnahme" ||document.bestellung.zahlungsart.value == "ueberweisung") {
		document.bestellung.karte.selectedIndex = 0;
		document.bestellung.inhaber.value = '';
		document.bestellung.monat.value = '';
		document.bestellung.jahr.value = '';
		document.bestellung.nummer.value = '';
		document.bestellung.kartenpruefwert.value = '';
				
		document.bestellung.karte.style.backgroundColor = '#cccccc';
		document.bestellung.inhaber.style.backgroundColor = '#cccccc';
		document.bestellung.monat.style.backgroundColor = '#cccccc';
		document.bestellung.jahr.style.backgroundColor = '#cccccc';
		document.bestellung.nummer.style.backgroundColor = '#cccccc';
		document.bestellung.kartenpruefwert.style.backgroundColor = '#cccccc';
		
		document.bestellung.karte.disabled = 'disabled';
		document.bestellung.inhaber.disabled = 'disabled';
		document.bestellung.monat.disabled = 'disabled';
		document.bestellung.jahr.disabled = 'disabled';
		document.bestellung.nummer.disabled = 'disabled';
		document.bestellung.kartenpruefwert.disabled = 'disabled';
	} else {
		document.bestellung.karte.style.backgroundColor = '#ffffff';
		document.bestellung.inhaber.style.backgroundColor = '#ffffff';
		document.bestellung.monat.style.backgroundColor = '#ffffff';
		document.bestellung.jahr.style.backgroundColor = '#ffffff';
		document.bestellung.nummer.style.backgroundColor = '#ffffff';
		document.bestellung.kartenpruefwert.style.backgroundColor = '#ffffff';
		
		document.bestellung.karte.disabled = '';
		document.bestellung.inhaber.disabled = '';
		document.bestellung.monat.disabled = '';
		document.bestellung.jahr.disabled = '';
		document.bestellung.nummer.disabled = '';
		document.bestellung.kartenpruefwert.disabled = '';
	}
}
//-->