if(navigator.userAgent.indexOf("Firefox") != -1) var ffx = 7
else var ffx=0
function showbubble(whichbubble){
	resetleft = document.getElementById(whichbubble).offsetLeft;
	resettop = document.getElementById(whichbubble).offsetTop;
	resetbubble = document.getElementById(whichbubble).innerHTML;
	var ratetop = document.getElementById(whichbubble).offsetTop - 68;
	var rateleft  = document.getElementById(whichbubble).offsetLeft - 15 + ffx;
	document.getElementById(whichbubble).style.top = ratetop;
	document.getElementById(whichbubble).style.left = rateleft;
	document.getElementById(whichbubble).innerHTML = '<table cellpadding="0" cellspacing="0" border="0" width="200"><tr><td valign="top" align="left" width="5"><img src="/images/bubble_lt.gif" alt="" width="5" height="5" border="0"></td><td class="bubble"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td><td valign="top" align="right" width="5"><img src="/images/bubble_rt.gif" alt="" width="5" height="5" border="0"></td></tr><tr><td valign="top" align="left" class="bubble"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td><td class="bubble" style="COLOR:#ffffff">'+ document.getElementById(whichbubble).innerHTML + '</td><td valign="top" align="right" class="bubble"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td></tr><tr><td valign="top" align="left" width="5"><img src="/images/bubble_lb.gif" alt="" width="5" height="5" border="0"></td><td class="bubble"><img src="/images/spacer.gif" alt="" width="1" height="1" border="0"></td><td valign="top" align="right" width="5"><img src="/images/bubble_rb.gif" alt="" width="5" height="5" border="0"></td></tr><tr><td valign="top" align="left" colspan="3"><img src="/images/spacer.gif" alt="" width="13" height="1" border="0"><img src="/images/bubble_bottom.gif" alt="" width="13" height="13" border="0"></td></tr></table>';
	document.getElementById(whichbubble).style.visibility="visible";	
}
function hidebubble(whichbubble){
	document.getElementById(whichbubble).style.left = resetleft;
	document.getElementById(whichbubble).style.top = resettop;
	document.getElementById(whichbubble).innerHTML = resetbubble;
	document.getElementById(whichbubble).style.visibility="hidden";
}
