function defWindow(word) {

var NGS_NGX_PIONEER_DE_PATH="/splat_ngx_pioneer";
var NGS_NGX_PIONEER_LIVE_PATH="/ngexplorer/pioneer";

var currentPath = "";
currentPath = window.location.pathname;

var ngs_ngx_de_edition_root = "/splat_ngx_pathfinder";

if ((currentPath.indexOf(NGS_NGX_PIONEER_DE_PATH) == 0)||(currentPath.indexOf(NGS_NGX_PIONEER_LIVE_PATH) == 0)){
	ngs_ngx_de_edition_root = "/splat_ngx_pioneer";
}
else{
	ngs_ngx_de_edition_root = "/splat_ngx_pathfinder";
}


the_window = window.open(ngs_ngx_de_edition_root + "/templates/output/glossary/term.tmpl?term="+escape(word), "defwin", "scrollbars,resizable,status,width=400,height=150");
the_window.focus();
}


function defWindow_1(url) {
  the_window = window.open("http://boulder.nationalgeographic.com/ngexplorer/0311/articles/"+escape(url), "defwin", "scrollbars,resizable,status,width=400,height=150");
  the_window.focus();
}