// JavaScript Document

<!--//
function makeForm() {
mypara=document.getElementById("programPage");
myform=document.createElement("form");
myselect = document.createElement("select");
myOnChange = new Function("e", "location.href='http://wljt.org' + myselect.options[myselect.selectedIndex].value");

theOption=document.createElement("OPTION");
theText=document.createTextNode("Select a program...");
theOption.appendChild(theText);
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("America\'s Home Cooking: What\'s for Dinner");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/ahcwhatsfordinner.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Anti-Cancer with Dr\. David Servan");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/anti-cancer.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Aretha Franklin presents: Soul Rewind (My Music)");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/arethafranklin.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Carole King - James Taylor: Live at the Troubadour");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/carolekingjamestaylor.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Change Your Brain, Change Your Body");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/changeyourbrain.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Clay Aiken - Tried and True");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/clayaiken.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("David Garrett Rock Symphonies");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/davidgarrettrocksymphonies.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Diane Warren: Love Songs");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/dianewarren.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Dr. Christiane Northrup\'s Women\'s Bodies, Women\'s Wisdom");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/drchristianenorthrup.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Easy Yoga for Arthritis with Peggy Cappy");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/easyyoga.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Ethan Bortnick and His Musical Time Machine");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/ethanbortnick.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Gospel Music of The Statler Brothers");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/gospelmusicofthestatlerbrothers.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Hallelujah Broadway");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/hallelujahbroadway.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Marvin Hamlisch Presents: The 70s\, The Way We Were");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/marvinhamlisch.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("The Pretenders - Live in London");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/thepretenders.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Seeing\, Searching\, Being");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/seeingsearchingbeing.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Through A Dogs Eyes");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/throughadogseyes.html");
myselect.appendChild(theOption);

theOption=document.createElement("OPTION");
theText=document.createTextNode("Video Games Live");
theOption.appendChild(theText);
theOption.setAttribute("value","/pledge/2010august/videogames.html");
myselect.appendChild(theOption);


myform.appendChild(myselect);
mypara.appendChild(myform);
myselect.onchange=myOnChange;

}

//-->
