var names=' ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
var usernames =' ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890_'
var phone='1234567890 +()'

function alpha(e,allow)
{
	var k;
	k=document.all?parseInt(e.keyCode): parseInt(e.which);
	return ((allow.indexOf(String.fromCharCode(k))!=-1) || k == 8);
}

function goto_page(page,league,sub_page)
{
	document.forms.menu.page.value = page;
	document.forms.menu.league.value = league;
	document.forms.menu.sub_page.value = sub_page;
    document.forms.menu.submit();
}

function goto_tab_page(page)
{
	document.forms.tabs.page.value = page;
//	document.forms.menu.league.value = title;
    document.forms.tabs.submit();
}