// Preisgenerator für Angebot Typ 1
function LmPreis1(Id) { 
	if (MPT[Id]) {
		if (MPT[Id]>=0) {
			document.write(MPT[Id]);
		}
		else {
			document.write('ausgebucht.');
		}
	}
	else {
		document.write('---');
	}
}
// Preisgenerator für Angebot Typ 2
function LmPreis2(Id) { 
	if (MPL[Id]) {
		if (MPL[Id]>=0) {
			document.write(MPL[Id]);
		}
		else {
			document.write('ausgebucht.');
		}
	}
	else {
		document.write('---');
	}
}
