// Web Javascript Utilities for 

//

//   Readit (inline)

//
// This script when invoked inline produces a form that creates a popup with embedded mp3 player
//
// Copyright  2008 by Stan Pope.  All rights reserved.

//
//-------------------------------------------------------------------------------------


//
var path=location.pathname
//alert("path="+path);
var mp3name = path.substr(path.lastIndexOf("/")+1)
//alert("mp3name "+mp3name);
mp3name = "mp3/"+mp3name.substr(0,mp3name.lastIndexOf(".")) + ".mp3"
//alert("mp3name "+mp3name);
//
// Produce html to allow customer to invoke reader
document.write('<A HREF="'+mp3name+'" TARGET=_new><img src="mp3/readit.gif"  ALT="Read the page to me aloud!" BORDER=1 width=16 height=16></A>');

