/********
 * Takes a Select option value and loads reloads the URL in the current window
********/
function goto_URL(object) {
   location.replace(object.options[object.selectedIndex].value);
}
function openWindowOnClick(url) {
var x = window.open(url,'','height=250,width=360');
x.focus();
}
function SymError()
{
  return true;
}
window.onerror = SymError;
