function glosspop(term) {

	leftPos = 300 
	topPos = 300;
	
	if (screen) { 
		leftPos = (screen.width / 2) - 175; 
		topPos = (screen.height / 2) - 40;
	}
	
	newWindow = window.open('/StaticResources/info/popups/glossary.html#' + term,'Glossary','scrollbars=yes,width=350,height=80,left=' + leftPos + ',top=' + topPos);
	
	newWindow.focus();
}

function popup(name) {

		leftPos = 300
		topPos = 300;

		if (screen) {
			leftPos = (screen.width / 2) - 175;
			topPos = (screen.height / 2) - 40;
		}

		newWindow = window.open('/StaticResources/info/popups/contacts.html#' + name,'Contacts','scrollbars=yes,width=350,height=220,left=' + leftPos + ',top=' + topPos);

		newWindow.focus();
}

function longdesc(term) {

	leftPos = 300;
	topPos = 300;
	
//	if (screen) { 
//		leftPos = (screen.width / 2) - 175; 
//		topPos = (screen.height / 2) - 40;
//	}
	
	newWindow = window.open('/research/NIHresearch/scunit/FACScans_desc.asp#' + term,'Description','scrollbars=yes,width=450,height=300,left=' + leftPos + ',top=' + topPos);
	
	newWindow.focus();
}