/* HeadHeight */
function setHeadHeight () {
	windowHeight = document.body.offsetHeight;
	newWindowHeight = windowHeight/3.5;
	document.getElementById("page-head").style.height = newWindowHeight;
}

/* OpenImage */
function OpenImage(img,imgpath,width,height)
{
	ImageWindow = window.open('','Image','width='+width+',height='+height+',top=100,left=100,fullscreen=0,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0');
	ImageWindow.location.href = 'inc/openimage.php?img='+img+'&imgpath='+imgpath;
	ImageWindow.focus();
}