var height;
var width;

function initializeView(){
	height=window.innerHeight;
	width=window.innerWidth;
	
	document.getElementById("leftstripe").style.height=height+"px";
	document.getElementById("dots").style.height=height-90+"px";
	document.getElementById("testata").style.width=(width-62-20)+"px";
	document.getElementById("rightside").style.width=(width-62)+"px";
	document.getElementById("page").style.height=height-80-20+"px";
	document.getElementById("page").style.width=width-90-9-62+"px";
}