var selectionDiv="countrySelection";
var formName="basket";
var userDataForm="diffSendData";

function setPoland()
{
	//logit("polska");

	hideCountrySelection();
	unlockFormElements();
}

function setOther()
{
		//logit("other");
		showCountrySelection();
		lockFormElements();

}

function formInput(name)
{

}

function byId(id)
{
	return document.getElementById(id);
}

function logit(msg)
{
	byId("logs").innerHTML=msg + "<br>";
}

function lockFormElements()
{
	form=byId(formName);
	//logit(form.sposob[2].value);
	form.sposob[0].checked=true;
	byId("sp2").style.display="none";
	byId("sp3").style.display="none";
	
	byId('allpaytext1').style.display="none";
	byId('allpaytext2').style.display="block";

}

function unlockFormElements()
{
	form=byId(formName);
	//logit(form.sposob[2].value);
	form.sposob[1].checked=true;
	byId("sp2").style.display="block";
	byId("sp3").style.display="block";
	byId('allpaytext2').style.display="none";
	byId('allpaytext1').style.display="block";


}

function showCountrySelection()
{
	byId(selectionDiv).style.display="block";
}

function hideCountrySelection()
{
	byId(selectionDiv).style.display="none";
}

function showForm()
{
	if(byId('basket_form').diffdata[1].checked==true)
	{
		byId(userDataForm).style.display="block";
	}
	else
	{
		byId(userDataForm).style.display="none";
		//logit(byId('basket_form').diffdata.value);
	}
}

