function r_on(i) {
  if (document[i].src.indexOf("down") < 0) {
    document[i].src = "/images/" + i + "_over.gif"; 
  }
}

function r_off(i) {
  if (document[i].src.indexOf("down") < 0) {
    document[i].src = "/images/" + i + ".gif"; 
  }
}

function writeDate() {
  var today = new Date();
  var year = today.getFullYear();
  document.write(year);
}

function openIndustry() {
	selectron = document.getElementById("solution");
	window.open('/solutions/?view=Application&Industry=' + selectron.options[selectron.selectedIndex].value,'_top');
}