X=0;
Y=0;

function showPopup( content ){
    
    while (content.indexOf("#") > 0 )
	{
		
		content = content.substring(0,content.indexOf("#") - 1 ) + "'" + content.substring(content.indexOf("#") + 1, content.length ) ;
	
	}

	//x = parseInt( event.x ) ;
        //y = event.y;
        table_html = "<Table width=400 height=200 cellSpacing=0 cellPadding=0 >";
  	wOBJ = window.createPopup();
	popOBJ = wOBJ.document.body;
        popOBJ.style.backgroundColor = "lightyellow";
        popOBJ.style.border = "solid black 1px";

	
	popOBJ.innerHTML = table_html + "<TR><TD></TD><TD valign=top><font face=Arial size=4>" + content + "</font></TD><TD></TD></Table>";
	wOBJ.show( 200,Y+130,400,150);
  }

function displayMouseXY(evt)
{
	X = event.x;
        Y = event.y;   

}

document.onmousemove = displayMouseXY;
