//
// Javscript code that you want accessible to all pages can go in this file.
// It is referenced by main_template.
//
function changeLoc(select) {
    var href = select.options[select.selectedIndex].value;
    if (href != " ") {
        document.location = href;
    }
}

function popupWindow(url, width, height) {
  if(width == undefined) {
      width = 400;
  }
  if(height == undefined) {
      height = 400;
  }
  var popup = window.open(url, "popup", "toolbar=0,scrollbars=0,status=0,resizable=1,width="+width+",height="+height);
  popup.focus();
}

