// function onover_clear() { window.status = '' return true } function onover_status() { window.status = 'View the operational status of the GCI platform.' return true } function onover_threat() { window.status = 'View the latest virus threats.' return true } function onover_maint() { window.status = 'View current and upcoming outages and maintenance windows for the GCI platform.' return true } function show_intro(baseid) { // started with Effects for these, but couldn't make them smooth $(baseid + '_after').style.display = 'none' $(baseid + '_intro').style.display = 'block' $(blockid).style.display = 'none' } function show_status(baseid) { blockid = baseid + '_block' linkid = baseid + '_link' url = 'http://portal.gci.net' + '/' + baseid function done(req) { $(blockid).innerHTML = req.responseText $(baseid + '_intro').style.display = 'none' $(baseid + '_after').style.display = 'block' $(blockid).style.display = 'block' } if ($(blockid).innerHTML == '') { new Ajax.Updater(blockid, url, {method:'get', parameters:{}, onComplete:done} ) } else { $(baseid + '_intro').style.display = 'none' $(baseid + '_after').style.display = 'block' $(blockid).style.display = 'block' } } //