		
	
function displayBubbleTrue(obj,str,dx,dy,flag)
{
    var pointX=0;
    var pointY=0;
    document.getElementById('ultBubbleHelpBodyR').innerHTML=str;
    var obj2=obj;
    var x=0;
    var y=0;
    while(obj2) 
    {
        y = y + parseInt(obj2.offsetTop);
        x = x + parseInt(obj2.offsetLeft);
        obj2 = obj2.offsetParent;
    }
    var Help= document.getElementById('ultBubbleHelpR');
		
					
    var HelpFooter= document.getElementById('ultBubbleHelpFooterR');
	$j('#ultBubbleHelpHeaderRClose').remove();
    if(flag=='center')
    {	
        pointY=$j(Help).height();
        pointX=130;
        $j(HelpFooter).attr('style','background-image: url(/img/main/testpsycho/ultBubbleFooterCenter.png)');
    }
    if(flag=='left')
    {	
        pointY=$j(Help).height();
        pointX=25;
        $j(HelpFooter).attr('style','');
    }
    if(flag=='right')
    {	
        pointY=$j(Help).height();
        pointX=240;
        $j(HelpFooter).attr('style','background-image: url(/img/main/testpsycho/ultBubbleFooterRight.png)');
    }
	if(flag=='header_right_no_hide')
    {	
        pointY=0;
        pointX=130;
		$j('#ultBubbleHelpHeaderR').attr('style','background-image: url(/img/main/testpsycho/ultBubbleHeaderRight.png); height: 28px;');
		$j(HelpFooter).attr('style','background: url(/img/main/testpsycho/ultBubbleFooterNone.png) no-repeat');
		$j('#ultBubbleHelpHeaderR').append("<div id='ultBubbleHelpHeaderRClose'style='position: absolute; width: 16px; height:16px; background: url(/img/main/common/close-icon.png); margin-left: 246px; margin-top: 22px; cursor: pointer;' onclick='displayBubbleFalse(this);'></div>");
    }
		if(flag=='header_right')
    {	
        pointY=0;
        pointX=130;
		$j('#ultBubbleHelpHeaderR').attr('style','background-image: url(/img/main/testpsycho/ultBubbleHeaderRight.png); height: 28px;');
		$j(HelpFooter).attr('style','background: url(/img/main/testpsycho/ultBubbleFooterNone.png) no-repeat');
    }
	   if(flag=='header_center')
    {	
        pointY=0;
        pointX=130;
		$j('#ultBubbleHelpHeaderR').attr('style','background-image: url(/img/main/testpsycho/ultBubbleHeaderCenter.png); height: 28px;');
		$j(HelpFooter).attr('style','background: url(/img/main/testpsycho/ultBubbleFooterNone.png) no-repeat');
    }
						
    Help.style.left=x-pointX+dx+'px';
    Help.style.top=y-pointY+dy+'px';
    Help.style.display='block';
    return true
}
function displayBubbleFalse(obj)
{
    var Help= document.getElementById('ultBubbleHelpR');
    Help.style.display='none';
	$j('#ultBubbleHelpHeaderR').attr('style','background-image: url(/img/main/testpsycho/ultBubbleHeader.png); height: 10px;');
}

