
function showSelectedContent() {
	var currentSelectValue = document.formName.contentSelector.value;
	if (currentSelectValue == "" || currentSelectValue === undefined) {
		return;
	} else {
		document.location.href = currentSelectValue;
	}
}

