function showLinks(){
var height=document.body.scrollHeight-20;
var width=document.body.clientWidth;
var object=document.getElementById('links');
object.style.position='absolute';
object.style.visibility='visible';
object.style.top=height + 'px';
//object.style.left='20%';
}

