function setLang(dest,shop,cmd)
{
	var myform=document.forms[0];
	var cboLang=document.getElementById('cboLang');
	var targetLang=cboLang.options[cboLang.selectedIndex].value;
	var hidCmd=document.getElementById('hidCmd');
	hidCmd.value=cmd;
	myform.action=dest+'.p?ShopIdent='+shop+'&Lang='+targetLang;
	myform.submit();
}
function goStep(step)
{
	var myform=document.forms[0];
	var hidGo=document.getElementById('hidGo');
	hidGo.value=step;
	myform.submit();
}

