<!-- Begin

function openWin(URL) {
awindow=window.open(URL,"thewindow","toolbar=yes, width=440,height=400,status=no, scrollbars=yes,resize=no,menubar=no");
}

//  End -->



<!-- Begin

var popupwin = null;

  function popup(loc,ww,hh)

   {

    var mywidth = (ww + 0);

    var myheight = (hh + 0);

    var myspecs = "'menubar=0,status=1,resizable=1,location=0,titlebar=1,toolbar=0,scrollbars=1,width=" + mywidth + ",height=" + myheight + "'";

      if (popupwin == null || popupwin.closed)

			{

            popupwin = window.open (loc, 'popupwin', myspecs);

           }

		 else

		   {

            popupwin.focus();

            popupwin.location.href = loc;

          }

    }


//  End -->


<!-- Begin

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

}


//  End -->
