function buttonOver(id)
{
	document.getElementById("butTbl_"+id).style.border="1px solid #000080";
	document.getElementById("butTr_"+id).style.backgroundColor="#fef1d8";
	document.getElementById("butLink_"+id).style.color="#de0000";
}

function buttonOut(id)
{
	document.getElementById("butTbl_"+id).style.border="1px solid #faad1e";
	document.getElementById("butTr_"+id).style.background="#ffe6b7";
	document.getElementById("butLink_"+id).style.color="#000000";
}

function Country(country)
{
	var x = 500;
	var y = 415;
	var xscr = Math.round ((screen.availWidth / 2) - (x / 2));
	var yscr = Math.round ((screen.availHeight / 2) - (y / 2));

	df = window.open('auth.php?pay&country='+country,'','scrollbars=1,width='+x+',height='+y+',top='+yscr+',left='+xscr).focus();
}

function Display(id)
{
	c = document.getElementById(id);

	if (c.style.display == "none") c.style.display = "";
	else c.style.display = "none";
}

function nWin(id)
{
	var x = 450;
	var y = 150;
	var xscr = Math.round((screen.availWidth / 2) - (x / 2));
	var yscr = Math.round((screen.availHeight / 2) - (y / 2));

	df = window.open('games.php?wap='+id,'','scrollbars=1,width='+x+',height='+y+',top='+yscr+',left='+xscr).focus();
}

function nWin2(id)
{
	var x = 500;
	var y = 450;
	var xscr = Math.round((screen.availWidth / 2) - (x / 2));
	var yscr = Math.round((screen.availHeight / 2) - (y / 2));

	df = window.open('index.php?ticket='+id,'','scrollbars=1,width='+x+',height='+y+',top='+yscr+',left='+xscr).focus();
}