function imagePopUp(image, alt){
	window.open('/hasena/imgs/popup.html?image='+image+'&alt='+alt,'Image', 'width=300,height=400,left=100,top=200,scrollbars=no');
}

function normalize(){
	
	contentHeight = document.getElementById("body").offsetHeight;
	
	if (!window.innerHeight){
		windowHeight = document.documentElement.clientHeight;
		if (windowHeight == 0){
			windowHeight = document.body.clientHeight;
		}
	}
	else
		windowHeight = window.innerHeight;

	if (windowHeight <= contentHeight)
		newHeight = contentHeight+50;
	else{
		newHeight = windowHeight;
		document.getElementById("body").style.height = newHeight+"px";
		document.getElementById("contact").style.position = "absolute";
		document.getElementById("contact").style.bottom = "0";
	}
}
