
function hidestatus(){
window.status='Thank you for visiting http://java.free-ebooks-download.org bookmark us now!'
return true
}


if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT | Event.MOUSEDOWN)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
document.onmousedown=hidestatus

document.oncontextmenu	= new Function("return false")

function ShowDownload()
{
  var objWait = document.getElementById('imgDownload');
  var objDownload = document.getElementById('lnkDownload');
  
  objWait.style.display = "none";
  
  objDownload.style.display = "";
   
  var newLeft = Math.floor(screen.width/3) + Math.floor(Math.random() * 400) + "px"; 
  var newTop  = Math.floor(screen.height/8) + Math.floor(Math.random() * 400) + "px";
  
  objDownload.style.top = newTop;
  objDownload.style.left = newLeft;

}


