﻿// JScript File

var tooltip = new ToolTip();

function ToolTip(){

    var jumpin_text;
    
    this.init = function(){
        jumpin_text = document.getElementById("jumpin_text");
    }
    
    this.Open = function(text, width, factorX, factorY){
	    var jumpin_text = document.getElementById("jumpin_text");
	    jumpin_text.innerHTML = text;
	    jumpin_text.style.left = factorX + "px";
		jumpin_text.style.top = factorY + document.body.scrollTop + "px";	
	    jumpin_text.style.width = width + "px";
	    jumpin_text.style.display = "block";
	}
    this.Close = function(){
	   var jumpin_text = document.getElementById("jumpin_text");
       jumpin_text.style.display = 'none';
    }
}
