// <!--

theCurrentLoc = String( window.location.search );

// divide the URL into parameter-value pairs
if (theCurrentLoc) {
	theArgArray = theCurrentLoc.split('=');
	theArgValue = theArgArray[1];
} else {
	theArgValue = "";
}

document.write('<form method=\"post\" name=\"mainNavLevOne\" action=\"index.htm\" class=\"cdform">');
document.write('<select name=\"levOneNav\" size=\"1\" onChange=\"if(options[selectedIndex].value) {window.location.href=(options[selectedIndex].value)};\" class=\"orangeselect\">');
document.write('<option>My Other Recordings &raquo;</option>');
document.write('<option>--</option>');

document.write('<option value=\"cddetail.php?rec=ls\">');
if (theArgValue == "ls" || theArgValue == "") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('Lonesome Swallow</option>');

document.write('<option value=\"cddetail.php?rec=th\">');
if (theArgValue == "th") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('Too Hot For Words</option>');

document.write('<option value=\"cddetail.php?rec=wt\">');
if (theArgValue == "wt") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('With Thee I Swing</option>');

document.write('<option value=\"cddetail.php?rec=ti\">');
if (theArgValue == "ti") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('On Treasure Island</option>');

document.write('<option value=\"cddetail.php?rec=ic\">');
if (theArgValue == "ic") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('Terry Blaine In Concert</option>');

document.write('<option value=\"cddetail.php?rec=wh\">');
if (theArgValue == "wh") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('Whose Honey Are You?</option>');

document.write('<option value=\"cddetail.php?rec=br\">');
if (theArgValue == "br") {
	document.write('&#149;&nbsp;');
} else {
	document.write('&nbsp;&nbsp;');
}
document.write('Blue Room</option>');

document.write('</select></form>');

// -->


