
var __bubble=null;function hideBubble()
{if(__bubble)
{Element.hide(__bubble);}}
function showBubble(target,html,width,offsetX)
{if(!__bubble)
{__bubble=document.createElement('div');__bubble.style.position='absolute';__bubble.style.zIndex=99;__bubble.innerHTML='<table width="100%" cellpadding="0" cellspacing="0">'+'<tr>'+'<td><img src="/images/bubble_ul.png" width="17" height="17" alt="" /></td>'+'<td style="background-image:url(/images/bubble_bg_top.png);background-repeat:repeat-x">&nbsp;</td>'+'<td><img src="/images/bubble_ur.png" width="20" height="17" alt="" /></td>'+'</tr>'+'<tr>'+'<td style="background-image:url(/images/bubble_bg_left.png);background-repeat:repeat-y"></td>'+'<td id="__bubbleContent" style="background-image:url(/images/bubble_bg.png);padding:5px">&nbsp;</td>'+'<td style="background-image:url(/images/bubble_bg_right.png);background-repeat:repeat-y"></td>'+'</tr>'+'</table>'+'<table width="100%" cellpadding="0" cellspacing="0">'+'<tr>'+'<td style="width:17px"><img src="/images/bubble_ll.png" width="17" height="36" alt="" /></td>'+'<td style="width:49px"><img src="/images/bubble_pointer.png" width="49" height="36" alt="" /></td>'+'<td style="background-image:url(/images/bubble_bg_bottom.png);background-repeat:repeat-x">&nbsp;</td>'+'<td style="width:20px" align="right"><img src="/images/bubble_lr.png" width="20" height="36" alt="" /></td>'+'</tr>'+'</table>';(document.body||document.documentElement).appendChild(__bubble);}
$('__bubbleContent').innerHTML=html;if(!width)
{width=200;}
if(!offsetX)
{offsetX=0;}
var pos=Element.cumulativeOffset(target);__bubble.style.width=width+'px';__bubble.style.left=(offsetX+pos.left+(Element.getWidth(target)/2)-20)+'px';__bubble.style.top=(pos.top-Element.getHeight(__bubble))+'px';Element.show(__bubble);}