function checkCheckBox(f)	{
	if (f.agb.checked == false )	{
		alert('First you have to accept the Terms & Conditions.');
		return false;
	}
	else
		return true;
}

function changeBox(cbox) {
	box = eval(cbox);
	box.checked = !box.checked;
}
