var firstPass = document.URL.split('poetryeverywhere/');
var secondPass = firstPass[1].split('.');
poet = secondPass[0];
var oeTags = '';
function launchFlash() {
var targetarea = document.getElementById('player');
targetarea.innerHTML = writeFlash();
}
function writeFlash() {
if(PBS_FlashCanPlay(8)) {
return (oeTags); // embed the flash movie
} else { // flash is too old or we can't detect the plugin
// NOTE: height, width are required!
var alternateContent = '';
return(alternateContent); // insert non-flash content
}
}