	

function pulldown_menu()
{

	blogDir = "./blogPages/";
	if (drillLevel == 1) blogDir = "../blogPages/";



	// 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 = blogDir + url;

}


function showBlogMenu() {


document.write('<form name="pulldown"><select name="selectname" SIZE="1" onChange="pulldown_menu()"><option value="">Select A Letter</option><option value="marksBlogEntry1.html">I Hate The Ocean</option><option value="marksBlogEntry2.html">The Radio Game</option><option value="marksBlogEntry3.html">Kevin The Green Perp</option><option value="marksBlogEntry4.html">Jack Trigger, the Crazy Texan</option><option value="marksBlogEntry5.html">Goodbye Groucho</option><option value="marksBlogEntry6.html">The Green (soaked) Monster</option><option value="marksBlogEntry7.html">Raw Dick</option><option value="marksBlogEntry8.html">Not With Your Mouth Full</option><option value="marksBlogEntry9.html">I Stoop To Help The Little People</option><option value="marksBlogEntry10.html">Cookie The Comic</option><option value="marksBlogEntry11.html">This Is Your Brain On T-shirts</option></select></form>');


}