// Javascript code for the pull down menu list of collection

	function chooseCollections(form){
		var URL = document.form.collection.options[document.form.collection.selectedIndex].value;
		window.location.href = URL;
	}
	
//