
function  texx_hidd(){ // onmouseout
 window.document.rrr.texx.style.visibility="hidden";
}

function  texx_sshhoo(){ // onmouseover
 window.document.rrr.texx.style.visibility="visible";
}

function  writt(){
var llee=window.event.offsetY;
var llee11=window.event.offsetX;
llee=llee/10;
llee=Math.floor(llee);
llee=llee+1;
llee11=llee11/10;
llee11=Math.floor(llee11);
llee11=llee11+1;
strr="Available:Row="+llee+";Column="+llee11;
window.document.rrr.texx.value=strr;

var scrTop=document.body.scrollTop; 		// position of vertical scrollBar
var scrLeft=document.body.scrollLeft; // position of horizontal scrollBar

var windowWidth=document.body.clientWidth;
var windowHeight=document.body.clientHeight;

var pixelLeft=window.event.clientX+scrLeft+10;
var pixelTop=window.event.clientY+scrTop-5;

if(windowWidth<(window.event.clientX+10+195))
{
 pixelLeft=pixelLeft-215;
}

document.rrr.texx.style.pixelLeft=pixelLeft;  // clientX : How far is cursor from the left Border of screen
document.rrr.texx.style.pixelTop= pixelTop; // clientY : How below is cursor from the top Border of screen
}

