/* make a function that opens a page, either in a popup or not. */ /* done in such a way that a page can have multiple lbgChoosers */ lbgChooserOpen = function(page, inPopup) { if(inPopup) { OpenWin = this.open(page, "lbgChooser_popup"); } else { document.location.href=page; } } /* do we want the page in a popup or not? */ /* Generate content for local sites */ document.write('
'); document.write(''); document.write('
');