window.onload = function () {
	var div = document.getElementById("showMeOnTheTop");
	var table = document.getElementById("vvs");
	div.style.top = table.offsetTop + 75;
	div.style.display = "block";
	div.getElementsByTagName("div")[0].style.width = table.style.width;
}