/****************** BBL ********************************/


function showBbl(ttlStr, descStr ,ttlAlign, ttlDir){
	var browserName=navigator.appName; 
	if (browserName=="Microsoft Internet Explorer"){
		var theBblDiv = document.getElementById("bubleDiv1")
		var theTtl = document.getElementById("bbl1Ttl")
		var theDesc = document.getElementById("bbl1Desc")

		theBblDiv.style.display = "inline"
		
		if (ttlDir == "rtl") {
			theBblDiv.style.top = event.y - 50
			theBblDiv.style.left = event.x - 370
		}
		else {
			theBblDiv.style.top = event.y - 50;
			theBblDiv.style.left = event.x ;
		}
		theTtl.setAttribute('align',ttlAlign)
		theTtl.style.borderBottom = "1px solid #e1e1e1"
		theTtl.className='Black'
		theTtl.innerHTML = ttlStr

		theDesc.setAttribute('align','right')
		theDesc.className='GrayThin'
		theDesc.innerHTML = descStr

	}
}

function hideBbl(){
	var browserName=navigator.appName; 
	if (browserName=="Microsoft Internet Explorer"){
		theBblDiv = document.getElementById("bubleDiv1")
		theBblDiv.style.display = "none"
	}
}


function createBbl(){
var str
str = ""
str = str + "<div id='bubleDiv1' style='position:absolute;display:none'>"
str = str + "	<TABLE id='bubble1' width='350' cellpadding='2' cellspacing='2' border='0' style='border:1px solid #b1b1b1' bgcolor='#ffffff'>"
str = str + "	<TR>"
str = str + "		<TD id='bbl1Ttl'></TD>"
str = str + "	</TR>"
str = str + "	<TR>"
str = str + "		<TD align='right' dir='rtl' valign='top' id='bbl1Desc'></TD>"
str = str + "	</TR>"
str = str + "	</TABLE>"
str = str + "</div>"

document.write(str)
}


/*********************************************************/
