function newImage(arg) { if (document.images) { img = new Image(); img.src = arg; return img; } } function changeImages() { if (document.images && (preloadFlag == true)) { for (var i=0; i'); } document.write('The Question of God'); if (!isPopup) { document.write(''); } return isPopup; } // bios function popBio(bioURL) { if (bioURL != null && bioURL != '') { bio = window.open(bioURL, 'bio', 'width=400,height=310,resizable'); bio.opener = self; bio.focus(); return false; } else { return true; } } // chat function popChat(chatURL) { if (chatURL != null && chatURL != '') { chat = window.open(chatURL, 'chat', 'width=400,height=385,top=10,left=10,resizable'); chat.opener = self; chat.focus(); return false; } else { return true; } } // transcripts function popTrans(transURL) { if (transURL != null && transURL != '') { trans = window.open(transURL, 'trans', 'width=570,height=400,resizable,scrollbars'); trans.opener = self; // so links from transcripts to other site pages // can target the main browser window (without // screwing up pop-ups opened from other pop-ups): if (self.name != 'bio' && self.name != 'trans') { self.name = 'main'; } trans.focus(); return false; } else { return true; } }