if (self != top || location.href.indexOf('http://www.goodham.com') != 0 || top.location.href.indexOf('http://www.goodham.com') != 0) {
	top.location.href = 'http://www.goodham.com/index.html';
}

function popJump(selOBJ) {
	n = selOBJ.selectedIndex;
	location.href = selOBJ.options[n].value;
}

window.onload = fixHeight;
window.onresize = fixHeight;

function fixHeight() {
	if (document.getElementById) {
		c = document.getElementById('contents').clientHeight;
		m = document.getElementById('menu').clientHeight;
		if (c < m) {document.getElementById('contents').style.height = m + 'px';}
	}
	else if (document.all) {
		c = document.all('contents').clientHeight;
		r = document.all('menu').clientHeight;
		if (c < m) {document.all('contents').style.heightt = m + 'px';}
	}
}