function TooltipTxt(n)
{
    return "This is the text of the " + n + " tooltip";
}
function POPUP(URL,W,H){
var NewPop = null;
NewPop = window.open(URL,'removieopening','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,left=100,top=50,width='+ W +',height='+ H + '');NewPop.focus();
}
