function swapIndTeam(id,tour)
{
	var obj=document.getElementById(id);

	if (obj.value==0)
	{
		window.location.href="ViewInd.php?toId=" + tour;
	}
	else if (obj.value==1)
	{
		window.location.href="ViewTeam.php?toId=" + tour;
	}
}

function makePopup(url,title,w,h) 
{
	var alfa=window.open(url, title,"resizable=yes,scrollbars=yes,toolbar=no,directories=no,status=no,menubar=no,width=" +w +",height="+h);
	//alfa.resizeTo(w,h);
	alfa.focus();
}

function setLang(lang)
{
	document.getElementById('lang').value=lang;
	document.Frm.submit();
}