	
function checkBandpoolRegistrationForm (form) {
	if (form.email.value == '')
	{
		alert ('Bitte füllen Sie das Feld E-mail aus!');
		form.email.style.backgroundColor = '#FFBFD9';
		form.email.focus ();
		return false;
	}

	if (form.email.value.search("([-a-zA-Z0-9._]+@[-a-zA-Z0-9.]+(\.[-a-zA-Z0-9]+)+)*$")!=0)
		{
		alert ("Email ungültig!");
		form.email.focus();
		return false;
		}

	if (form.first_name.value == '')
	{
		alert ('Bitte füllen Sie das Feld Name/Bandname aus!');
		form.first_name.style.backgroundColor = '#FFBFD9';
		form.first_name.focus ();
		return false;
	}

	return true;
}

function checkBandpoolForm (form) {
	if (form.style.value == '')
	{
		alert ('Bitte füllen Sie das Feld Stilrichtung aus!');
		form.style.style.backgroundColor = '#FFBFD9';
		form.style.focus ();
		return false;
	}
	if (form.team.value == '')
	{
		alert ('Bitte füllen Sie das Feld Beschreibung aus!');
		form.team.style.backgroundColor = '#FFBFD9';
		form.team.focus ();
		return false;
	}

	return true;
}

function loadImpressum(url){
FLS=window.open(url, 'impressum', "width=400, height=400, scrollbars=yes, resizable=no,left=50,top=50"); 
FLS.focus();
return false;
}