function showIndexPopup (targetObjectId, eventObj) {
    var xOffsetB = 100;
    var yOffsetB = 100;
	
    if(eventObj) {
	// hide any currently-visible popups
	hideCurrentPopup();
	// stop event from bubbling up any farther
	eventObj.cancelBubble = true;
	// move popup div to current cursor position 
	// (add scrollTop to account for scrolling for IE)
        var newXCoordinate = (eventObj.pageX)?eventObj.pageX + xOffsetB:eventObj.x + xOffsetB + ((document.body.scrollLeft)?document.body.scrollLeft:0);
	var newYCoordinate = (eventObj.pageY)?eventObj.pageY + yOffsetB:eventObj.y + yOffsetB + ((document.body.scrollTop)?document.body.scrollTop:0);
        // and make it visible
	if( changeObjectVisibility(targetObjectId, 'visible') ) {
	    window.currentlyVisiblePopup = targetObjectId;
	    return true;
	} else {
	    return false;
	}
    } else {
	return false;
    }
}

function endquote(){
     hideCurrentPopup();
     var newXCoordinate = "";
     var newYCoordinate = "";
     window.currentlyVisiblePopup = "";
}