function popupwindow (url, name, width, height) {
	window.open(url,name,'width='+width+',height='+height+',resizable=no,scrollbars=no,directories=no,menubar=no,taskbar=no,toolbar=no');
}
function toggleVisibility(whichLayer)
{
if (document.getElementById)
{
var style2 = document.getElementById(whichLayer).style;
style2.display = style2.display? "":"none";
}
else if (document.all)
{
var style2 = document.all[whichLayer].style;
style2.display = style2.display? "":"none";
}
else if (document.layers)
{
var style2 = document.layers[whichLayer].style;
style2.display = style2.display? "":"none";
}
}
function lobbyMouseOver (obj) {
	var objtext = 'Open Table';
	var objhtml = 'Open Table';
	obj.innerHTML=objhtml;
}