function showSitePage(form) {
// Default (form) value is 0
// Web/HTML page is set with OPTION SELECTED VALUE
var formindex=form.snPageName.selectedIndex;
parent.self.location=form.snPageName.options[formindex].value;
// parent.self refers to the current browser window
}