function validate_kreditkort(thisform)

{

	if(document.kreditkort.customPrice.value == "" && document.kreditkort.price[3].checked)

	{

		document.getElementById('customPriceError').innerHTML = 'Ange belopp att donera';
		return false;

	}
else if(document.kreditkort.customPrice.value !== "" && document.kreditkort.price[2].checked ||
	document.kreditkort.customPrice.value !== "" && document.kreditkort.price[1].checked ||
	document.kreditkort.customPrice.value !== "" && document.kreditkort.price[0].checked){
		document.getElementById('customPriceError').innerHTML = 'Annat belopp &auml;r inte markerat';
		return false;	
	}
	else if(document.kreditkort.customPrice.value == "" && document.kreditkort.price[3].checked ||
	   document.kreditkort.customPrice.value !== "" && document.kreditkort.price[2].checked ||
	   document.kreditkort.customPrice.value !== "" && document.kreditkort.price[1].checked ||
	   document.kreditkort.customPrice.value !== "" && document.kreditkort.price[0].checked){
	   	document.getElementById('customPriceError').innerHTML = 'Ange belopp att donera';
		return false;
	}
		else {
		document.getElementById('customPriceError').innerHTML = '';
	}
}



function validate_autogiro(thisform)

{

	if(document.autogiro.customPrice.value == "" && document.autogiro.price[4].checked)

	{

		document.getElementById('customPriceError').innerHTML = 'Ange belopp att donera';
		return false;

	}
else if(document.autogiro.customPrice.value !== "" && document.autogiro.price[3].checked ||
	document.autogiro.customPrice.value !== "" && document.autogiro.price[2].checked ||
	document.autogiro.customPrice.value !== "" && document.autogiro.price[1].checked ||
	document.autogiro.customPrice.value !== "" && document.autogiro.price[0].checked){
		document.getElementById('customPriceError').innerHTML = 'Annat belopp &auml;r inte markerat';
		return false;	
	}
	else if(document.autogiro.customPrice.value !== "" && document.autogiro.price[3].checked ||
	   document.autogiro.customPrice.value !== "" && document.autogiro.price[2].checked ||
	   document.autogiro.customPrice.value !== "" && document.autogiro.price[1].checked ||
	   document.autogiro.customPrice.value !== "" && document.autogiro.price[0].checked ||
	   document.autogiro.customPrice.value == "" && document.autogiro.price[4].checked){
	   	document.getElementById('customPriceError').innerHTML = 'Ange belopp att donera';
		return false;
	}

		else {
		document.getElementById('customPriceError').innerHTML = '';
	}
}