function gotoOtherLiveMatch(basePath) {
     var theUrl = basePath + 'live_popup.html';
     document.location.href = theUrl;
}
 
function showFiche(url, target) {
     var features = 'scrollbars=yes,width=499,height=637';
     window.open(url,target,features);
}
 
function showPage(url, target) {
     var features = 'scrollbars=yes,width=1023,height=600';
     window.open(url,target,features);
}