function ShowBalloonHelpWFold( hndEvent, mesText ) {
	var aryStrs = mesText.split( ',' );
	var strResult = '';
	for( var i=0; i<aryStrs.length; i++ ) {
		if ( strResult != '' ) {
			strResult = strResult + '<br>';
		}
		strResult = strResult + '<nobr>' + aryStrs[ i ] + '</nobr>';
	}
	ShowBalloonHelp( hndEvent, strResult );
}

function ShowBalloonHelp( hndEvent, mesText ) {
	if ( document.all ) {
		var x = event.clientX + document.body.scrollLeft;
		var y = event.clientY + document.body.scrollTop;
		if ( document.getElementById( 'ballonDiv' ) ) {
			var obj = document.getElementById( 'ballonDiv' );
			obj.innerHTML = mesText;
			obj.style.pixelLeft = x + 5;
			obj.style.pixelTop = y + 16;
			obj.style.visibility = 'visible';
		}
	}
}

function HideBallonHelp( ) {
	if ( document.all ) {
		if ( document.getElementById( 'ballonDiv' ) ) {
			var obj = document.getElementById( 'ballonDiv' );
			obj.innerHTML = '';
			obj.style.visibility = 'hidden';
		}
	}
}

function CanBalloonP( ) {
	if ( document.all ) {
		if ( document.getElementById( 'ballonDiv' ) ) {
			return( 255 );
		}
	}
	return( 0 );
}

if ( document.all ) {
	document.write( '<div id="ballonDiv" style="visibility: hidden; position: absolute; z-index: 1024;"></div>' );
}
