//============================
function cd_validator(theForm)
{
if (theForm.Format.value == "")
	{ alert("W&auml;hlen Sie ein CD-Format!"); theForm.Format.focus(); return (false); }

//if (theForm.Lochdurchmesser.value <= 0)
//	{ alert("Tragen Sie bitte den Lochdurchmesser für das CD-Etikett ein!"); theForm.f2.focus(); return (false); }

if (theForm.Anzahl.value < 500)
	{ alert("Die Mindestanfragemenge sind 500 CD-Etiketten!"); theForm.Anzahl.focus(); return (false); }

if (theForm.Bedruckung.selectedIndex == 0)
	{ alert("Wählen Sie bitte die spätere Bedruckungsart."); theForm.Bedruckung.focus(); return (false); }

	return (Anschrift_Validator(theForm))
}
