
function pulldown_menu1() {
	var url = document.pulldown1.selectname.options[document.pulldown1.selectname.selectedIndex].value

	// Re-direct the browser to the url value
	window.location.href = 'archive.php?page=' + url 
}

function pulldown_menu2() {
	var url = document.pulldown2.selectname.options[document.pulldown2.selectname.selectedIndex].value

	// Re-direct the browser to the url value
	window.location.href = 'archive.php?page=' + url 
}

function pulldown_menu3() {
	var url = document.pulldown3.selectname.options[document.pulldown3.selectname.selectedIndex].value
	// Re-direct the browser to the url value
	window.location.href = 'archive.php?page=' + url 
}

function pulldown_menu4() {
	var url = document.pulldown4.selectname.options[document.pulldown4.selectname.selectedIndex].value
	// Re-direct the browser to the url value
	window.location.href = url 
}
