function setElementProperty(elmId, property, value) { var p_elm = elmId; var elm = null; if(typeof(p_elm) == "object") { elm = p_elm; } else { elm = document.getElementById(p_elm); } if((elm != null) && (elm.style != null)) { elm = elm.style; elm[property] = value; } } function Show_Submenue(id) { setElementProperty(id, 'display', 'block'); } function Hide_Submenue(id) { setElementProperty(id, 'display', 'none'); } function Link_Highlight(id) { setElementProperty(id, 'backgroundColor', 'black'); setElementProperty(id, 'color', 'white'); } function Link_Lowlight(id) { setElementProperty(id, 'backgroundColor', 'transparent'); setElementProperty(id, 'color', 'black'); } function B_Link_Highlight(id) { setElementProperty(id, 'color', 'white'); } function B_Link_Lowlight(id) { setElementProperty(id, 'color', 'black'); } function OpenURL(obj) { if(obj.value != 'JAM') { javascrip:window.open(obj.value); obj.options[0].selected = true; } } function sponsors() { window.location.href="?link=54"; } function locationlink(id) { window.location.href="?link=65&l=" + id; } function showtitleanz(elmname) { var elm = document.getElementById(elmname); elm.style['display'] = 'block'; } function hidetitleanz(elmname) { var elm = document.getElementById(elmname); elm.style['display'] = 'none'; }