function SetPromotionSource()
{	var land;
	var aboart=getAboArt();
	var creditcard=document.getElementById("payment-method_K").checked;

	var ps=document.getElementById("promotion-source");
	var psi=document.getElementById("promotion-source_inland");
	var psa=document.getElementById("promotion-source_ausland");

	var psv=document.getElementById("promotion-source-variant");
	var psvi=document.getElementById("promotion-source-variant_inland");
	var psva=document.getElementById("promotion-source-variant_ausland");

	if(aboart=="G")
		land=GetCountryCode("l_country-code");
	else
		land=GetCountryCode("r_country-code");

	if(land=="DE" || creditcard)
	{	ps.value=psi.value;
		psv.value=psvi.value;
	}
	else
	{	ps.value=psa.value;
		psv.value=psva.value;
	}
}
function onLoad_abo()
{	onLoad();
}
function Senden_abo()
{	SetPromotionSource();
	SendenAbo();
}
