// open-morph
morphologyWindow=new Object;
morphologyWindow.closed=true;
function open_morphology(theURL) {
	if (morphologyWindow.closed == true) {
		morphologyWindow = window.open("anatomy/morphology.htm", "morphologyWindow", "width=700,height=547,scrollbars=no,location=no");
	} else {
		morphologyWindow.focus();		
		//old height 525 now +22
	}
}
