// Inovent Javscript File
function dropdown(dir){
  if(dir == "down"){
    document.getElementById('products-sub').style.display = "block";
  }
  if(dir == "up"){
    document.getElementById('products-sub').style.display = "none";
  }
}
function newWindow(chart) {
	chartWindow = window.open(chart, 'chartWin', 'location=yes,scrollbars=yes,toolbar=no,statusbar=no,menubar=no,resizable=yes,width=650,height=500')
	chartWindow.focus()
}
