// Open a limited-function browser window
function OpenWindow (url) {
  // Make sure browser supports 'window.focus' function
	if (window.focus) {
		popUpWin = window.open( url,'DetailedWindow','title=Kennedy Auto Marine,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=380,height=440' );
		popUpWin.focus (url);
	} else {
		location.href = url
  }
}

// Instantly redirect page upon changing a combobox
function GoThereNow (selectElement) {
  var newurl = selectElement.options[selectElement.selectedIndex].value;

  if (newurl) {
    location.replace (newurl);
  } else {
    return false;
  }
}
