var isover=false
var divtime=0

function getScrollingPosition()
{
var position = [0, 0];
if (typeof window.pageYOffset != 'undefined')
{
position = [window.pageXOffset,window.pageYOffset];
}
else if (typeof document.documentElement.scrollTop
!= 'undefined' && document.documentElement.scrollTop > 0)
{
position = [document.documentElement.scrollLeft,document.documentElement.scrollTop];
}
else if (typeof document.body.scrollTop != 'undefined')
{
position = [document.body.scrollLeft,document.body.scrollTop];
}
return position;
}

function divIN(){
clearTimeout(divtime)
}

function showInfo(e){
var ScrollTop = getScrollingPosition()
 
/*
if (ScrollTop == 0)
{
    if (window.pageYOffset)
        ScrollTop = window.pageYOffset;
    else
        ScrollTop = (document.body.parentElement) ? document.body.parentElement.scrollTop : 0;
}
*/

clearTimeout(divtime)
document.getElementById('userInfo').style.left=e.clientX-200;
document.getElementById('userInfo').style.top=(e.clientY-90)+ScrollTop[1];
document.getElementById('userInfo').style.display='block';
}

function outInfo(){
divtime=setTimeout("hideInfo()", 500);
}

function outInfo2(){
divtime=setTimeout("hideInfo()", 500);
}

function hideInfo(){
document.getElementById('userInfo').style.display='none';
}

document.write ("<style type='text/css'>");
document.write (".apporangetable{border: 1px solid #ededed;background-color: #fbfbfb;}");
document.write (".textBlack{font: 8pt tahoma;font-weight:regular;color:#000;text-align:left}");
document.write (".textGray{font: 8pt tahoma;font-weight:regular;color:gray;text-align:left}");
document.write (".orangeLink{font: 8pt tahoma;font-weight:regular;color:orange;text-align:left}");

document.write ("</style>");

function printInfo(){
var inf;

inf="<div id=userInfo style='position:absolute; display:none; top:37px;filter:progid:DXImageTransform.Microsoft.Alpha(opacity=90);' onMouseOver='divIN()'onMouseOut='outInfo2()'>"
inf+="<table class=apporangetable><tr><td><img src=http://www.apporange.com/apporangelogo.png></td><td><table><tr><td class=textBlack><b>Apporange Ltd</b></td></tr><tr><td class=textGray>Office 201, 10 Yianni Kranidioti Str.</td></tr><tr><td class=textGray>1065 Nicosia, Cyprus</td></tr><tr><td class=textGray>info@apporange.com</td></tr></table></td></tr></table>"
inf+="</div>"
inf+="Developed by <a href=http://www.apporange.com class=orangeLink target=_blank onMouseOver='showInfo(event)' onMouseOut='outInfo()'>apporange labs</a>"
document.write(inf)
}

