function getWindowHeight() {
	var windowHeight=0;
	if (typeof(window.innerHeight)=='number') {
		windowHeight=window.innerHeight;
	} else {
		if (document.documentElement&& document.documentElement.clientHeight) {
			windowHeight=document.documentElement.clientHeight;
		} else {
			if (document.body&&document.body.clientHeight) {
				windowHeight=document.body.clientHeight;
			}
		}
	}
	return windowHeight;
}

function setContentHeight() {
	if (document.getElementById) {
		var windowHeight=getWindowHeight();
		if (windowHeight>0) {
			
			var contentElement=document.getElementById('bodyspace');
			var contentHeight=contentElement.offsetHeight;
			
			
			if ((windowHeight-contentHeight) > 297) {
				contentElement.style.height = windowHeight-296 + 'px';
			} else {
				
			}
			
			
		}
	}
}

function photos() { 
	window.open("/media/photos/",'_photos','menubar=no, scrollbars=no,resizable=no,top=' + (screen.height/2-200) + ',left=' + (screen.width/2-280) + ',width=550,height=400');
} 