// Script Source: CodeLifter.com
// Copyright 2003 by CodeLifter.com
// Author: etLux
// Free for all, but leave in this header

// Set the target window or frame
// _top opens in the same window
// _blank opens in a new window
// Use the frame name to open to a frameset target

var theTarget = "_top";

function goThere(){
if(!document.theForm.theMenu.selectedIndex==""){
window.open(document.theForm.theMenu.options[document.theForm.theMenu.selectedIndex].value,theTarget,"");}}

