// JavaScript Document
function init() {
var window_width = 0;
var window_height = 0;
window_width = document.getElementById("theend").offsetLeft;
window_height = document.getElementById("theend").offsetTop;
loginblock_height = document.getElementById("loginblock").offsetHeight;
if (loginblock_height > window_height) 
{document.getElementById("blueback").style.height = (loginblock_height+100) + "px";}
else 
{document.getElementById("blueback").style.height = (window_height) + "px";}
}
