var xPos;
var yPos;

var T_COUNTRY = "Select a country to choose your provider.";
var T_PHONE = "Please read the FAQ if you send a sms for the first time";
var T_SENDER = "Only the a-z & A-Z are the allowed symbols, without spaces";
var T_FORMAT = "The format for more of the providers is still xxxxxxxxx (unknown)."+
				"In general the address is from 10 digits";

var T_CODE = "This is an anti-spam code. Please enter the following text into the next box";				

var image = "<div style='background:white;'><img src='http://worldsms.co.cc/images/faq.gif'/></div>";

function showToolTip(msg,evt){
    if (evt) {
        var url = evt.target;
    }
    else {
        evt = window.event;
        var url = evt.srcElement;
    }
    xPos = evt.clientX;
    yPos = evt.clientY;

   var toolTip = document.getElementById("toolTip");
   toolTip.innerHTML = image + "<p>"+msg+"</p>";
   toolTip.style.top = parseInt(yPos) + "px";
   toolTip.style.left = parseInt(xPos) + "px";
   toolTip.style.visibility = "visible";
   
}

function hideToolTip(){
   var toolTip = document.getElementById("toolTip");
   toolTip.style.visibility = "hidden";
}
