<!--
function openURL()
{

      // grab index number of the selected option
      selInd = document.theForm.aaa.selectedIndex;

      // get value of the selected option
      goURL = document.theForm.aaa.options[selInd].value;

      // redirect browser to the grabbed value (hopefully a URL)
      top.location.href = goURL;

}

//-->
<!--
function changeImages() {
if (document.images ) {
for (var i=0; i<changeImages.arguments.length; i+=2) {
document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
}
}
}
//-->
<!--
var remote = null;
function rs(n,u,w,h) {
remote = window.open(u, n, 'width=' + w + ',height=' + h +',resizable=no,menubar=no,scrollbars=auto');
if (remote != null) {
if (remote.opener == null)
remote.opener = self;
window.name = 'GNTRoot';
remote.location.href = u;
}
}
//-->