
function openMinistry() {
               
	var page = document.ministries.ministries.options[document.ministries.ministries.selectedIndex].value;
	var file = "/olqp/ministries/ministries/index.html";

	if (page == "ministry") {
		file = "/ministries/index.html";
	}	
	if (page == "admin") {
		file = "/ministries/admin_development.html";
	}
	if (page == "liturgy") {
		file = "/ministries/liturgy_worship.html";
	}
	if (page == "education") {
		file = "/ministries/education.html";
	}
	if (page == "justice") {
		file = "/ministries/social_justice.html";
	}
	if (page == "auxiliary") {
		file = "/ministries/auxiliary.html";
	}
	 top.location = file
}




