function popup(crsDescURI) {
	var href;
	if (typeof(crsDescURI) == 'string')
		href = crsDescURI;
	else if (typeof(crsDescURI) == 'object')
		href = crsDescURI.href;
	else return true;

	var popup = window.open(href, 'crsdesc', 'width=420,height=360,scrollbars=yes');
	if (window.focus) popup.focus();
 
	return false;
}