	

function pulldown_menu()
{

	fanForumDir = "./fanForumPages/";
	if (drillLevel == 1) fanForumDir = "../fanForumPages/";



	// Create a variable url to contain the value of the
	// selected option from the the form named pulldown and variable selectname
	var url = document.pulldown.selectname.options[document.pulldown.selectname.selectedIndex].value;

	// Re-direct the browser to the url value
	if (url != "") window.location.href = fanForumDir + url;

}


function showFanForumMenu() {


document.write('<form name="pulldown"><select name="selectname" SIZE="1" onChange="pulldown_menu()"><option value="">Select A Fan</option><option value="fanEmail2.html">Laura & Wayne Arnsbarger</option><option value="fanEncounter4.html">Biker Ladies</option><option value="fanEncounter1.html">Mrs. F. B. Austin</option><option value="fanEncounter2.html">Biker Guys</option><option value="fanEncounter3.html">NOLA Rabbit</option>></select></form>');




}