<!--
function popup (url, windowName, _width, _height) {

	var _windowOptions = 'menubar=1,scrollbars=1,status=1';
	var w = window.open(url, windowName, _windowOptions);
	w.resizeTo(_width,_height);
	return w;

}

function hideHomeNav() {

	var homeNav = parent.contents.document.getElementById('homeNav');

	if (document.title != 'Home') {
		homeNav.style.display = 'block';
	} else {
		homeNav.style.display = 'none';
	}

}

function viewImage(image) {

	winpops=window.open("viewImage.html?" + image,"anomaly","left=287,top=159,height=325,width=325");

}

function checkWindowSize() {
	// get the user's screen size
	var screenWidth = screen.width;
	var screenHeight = screen.height;
	
	// check if the user's resolution is greater than 1024 x 768
	if(screenWidth > 1024 && screenHeight > 768) {
		window.resizeTo(1034, 756);
		window.focus();
	}

}

//-->