function tablesShow(v) {
	if (v==1) {
		document.getElementById('t_hockey').style.display='none';
		document.getElementById('t_khl').style.display='none';
		document.getElementById('t_handball').style.display='none';
		document.getElementById('t_football').style.display='block';
	} else if (v==2) {
		document.getElementById('t_football').style.display='none';
		document.getElementById('t_khl').style.display='none';
		document.getElementById('t_handball').style.display='none';
		document.getElementById('t_hockey').style.display='block';
	} else if (v==3) {
		document.getElementById('t_football').style.display='none';
		document.getElementById('t_hockey').style.display='none';
		document.getElementById('t_handball').style.display='none';
		document.getElementById('t_khl').style.display='block';
	} else if (v==4) {
		document.getElementById('t_football').style.display='none';
		document.getElementById('t_hockey').style.display='none';
		document.getElementById('t_khl').style.display='none';
		document.getElementById('t_handball').style.display='block';
	}
}

//<!--
function wndTeam(TeamId) {
	width=320; height=500;
	window.open('games.php?sport=football&id='+TeamId, 'tempWnd', 'scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+Math.floor((screen.width - width)/2)+',top='+Math.floor((screen.height - height)/5));
}

function wndHTeam(TeamId) {
	width=320; height=500;
	window.open('games.php?sport=handball&id='+TeamId, 'tempWnd', 'scrollbars=yes,resizable=yes,width='+width+',height='+height+',left='+Math.floor((screen.width - width)/2)+',top='+Math.floor((screen.height - height)/5));
}
//-->

function hotlineShow(state) {
	if(state == 1) { //показываем
		document.getElementById('hideHotline').style.display = "block";
		document.getElementById('showBtn').style.display = "none";
	} else if (state == 2) { //прячем
		document.getElementById('showBtn').style.display = "block";
		document.getElementById('hideHotline').style.display = "none";
	}
}

function full_show() {
	document.getElementById("rashlop_mini").style.display = "none";
	document.getElementById("rashlop_full").style.display = "block";
}
function mini_show() {
	document.getElementById("rashlop_full").style.display = "none";
	document.getElementById("rashlop_mini").style.display = "block";
}

function setHome(ob) {
	ob.style.behavior='url(#default#homepage)';  
	ob.setHomePage('http://www.pressball.by'); 
}
