
            var text1="The tooltip is an easy way of interaction for the visitors in a web page ";

            var text2="<P align=justify><FONT face=Arial size=3><i>Elsewhere in Vietnam the pace of life is slower but every bit as alluring. Paddling through Mekong Delta in a small sampan and joking with the vendors at the  floating markets, relaxing on the magnificent white beaches around Nha Trang, exploring the charming cobbled alleyways of Hoi An, wandering the refined streets of the laid back capital of Hanoi, canoeing through the magnificent karst scenery of Ha Long Bay, trekking through remote hilltribe villages....... everywhere I was overcome  by the sheer beauty of the country, the friendliness of the locals, the atmosphere on the streets. Go now before the rest of the world discovers just how wonderful this country is!</i></div>";                    

//This is the text to be displayed on the tooltip.

if(document.images){
  pic1= new Image(); 

  pic1.src='htooltip/bubble_top.gif'; 

  pic2= new Image();
 
  pic2.src='htooltip/bubble_middle.gif'; 

  pic3= new Image(); 

  pic3.src='htooltip/bubble_bottom.gif'; 
}

function showToolTip(e,text){
                if(document.all)e = event;
                
                var obj = document.getElementById('bubble_tooltip');

                var obj2 = document.getElementById('bubble_tooltip_content');
		
		obj2.innerHTML = text;
		
                obj.style.display = 'block';

                var st = Math.max(document.body.scrollTop,document.documentElement.scrollTop);

                if(navigator.userAgent.toLowerCase().indexOf('safari')>=0)st=0; 

                var leftPos = e.clientX-2;

                if(leftPos<0)leftPos = 0;

                obj.style.left = leftPos + 'px';

                obj.style.top = e.clientY-obj.offsetHeight+2+st+ 'px';
        }       
        
        function hideToolTip()
        {
                document.getElementById('bubble_tooltip').style.display = 'none';
        }

