function centerLink(){

var topDist = Math.round(window.innerHeight/2-235);
var leftDist = Math.round(window.innerWidth/2-313);

document.getElementById("hello").style.top=topDist;
document.getElementById("hello").style.left=leftDist;
}
