function hoverTab(elem) { var bettype = document.showCombinationForm.bettypeId.value; if( elem.getAttribute("bettype")!=bettype ) elem.style.backgroundColor = "#5078C6"; if( elem.getAttribute("bettype")!=bettype ) elem.style.color = "#FFFFFF"; } function unHoverTab(elem) { elem.style.backgroundColor=''; elem.style.color=''; } function jumpTab(elem) { document.showCombinationForm.bettypeId.value = elem.getAttribute("bettype"); document.showCombinationForm.submit(); } function clickCombi(outcomeId,el) { if(outcomeId && parent.slip && parent.slip.clickCombi && outcomePool && outcomePool[outcomeId]) { parent.slip.clickCombi(outcomePool[outcomeId],el); } }