function coHide(){document.body.style.cursor = 'default';if (document.getElementById('callout')){document.getElementById('callout').style.visibility="hidden";}if (document.getElementById('callout-text')){document.getElementById('callout-text').style.visibility="hidden";}}function coShow(w, h, text){if (w<215) w = 215;if (h<130) h = 130;co = document.getElementById('callout');if (co){co.style.width = w;co.style.height = h;co.style.visibility = "visible";}w = w - 20;h = h - 60;co = document.getElementById('callout-text');if(co){co.style.width = w;co.style.height = h;co.style.visibility = "visible";co.innerHTML = "<table height='100%' width='100%' border='0' align='center' valign='middle'><tr><td align='center'>"+text+"</td></tr></table>";}document.body.style.cursor = 'images/xmy.cur';}
