// JavaScript Document

function submitForm(formName){
	
	switch(formName){
		case "kaufForm" :
			submitKaufForm();
		break;
	}
	
}

function submitKaufForm(){
	bestellung="nein";


	// Sehen, ob ein Song ausgewählt wurde:
	
	for(i=1;i<16;i++){
		if(document.getElementById('kaufItem_'+i).checked){bestellung="ja";}
	}

	
	if(bestellung=="nein"){
		alert("Sie haben keine Auswahl getroffen.");
	} else {
		document.kaufForm.submit();
	}

}


String.prototype.trim = function () {
	return this.replace(/^\s+/g, '').replace(/\s+$/g, '');
} 

function setErrorClass(id){
	document.getElementById(id).style.border="1px solid #FF0000";
	//document.getElementById(id).style.backgroundColor="#FF1C1C";
	document.getElementById("errormsgJS").style.display="block";
}

function setNonErrorClass(id){
	document.getElementById(id).style.border="1px solid #FFFFFF";
	//document.getElementById(id).style.backgroundColor="#FFFFFF";
}
