<!--
var popupWindow
function createNew (URL, w, h) {
	if (!popupWindow || popupWindow.closed) {
		popupWindow = window.open(URL,"_blank",'HEIGHT='+h+',WIDTH='+w+',scrollbars=1,resizeable=yes,toolbar=0,location=0,menubar=0')
	} else{
		//bring existing subwindow to the front
		popupWindow.focus()
	}
}

function redirect(location) {
  window.location = location;
}

function parseSearchSubmit (path)
{
  
  // search products
  if (document.searchform.t.options[document.searchform.t.selectedIndex].value=="p") {
	document.searchform.action = path + 'psearch';
  }

  // search FAQs
  if (document.searchform.t.options[document.searchform.t.selectedIndex].value=="f") {
    document.searchform.action = '/faq/search';
  }

  // search Articles
  if (document.searchform.t.options[document.searchform.t.selectedIndex].value=="a") {
	document.searchform.action = '/articles/search';
  }
}

// Disable right-click menu on images

function disable_right_click(evt) {
  evt = evt ? evt : window.event ? window.event : null;
  var event_number = (evt.button) ? evt.button        // IE
                   : (evt.which)  ? evt.which         // Mozilla
                   : 0;
  if (event_number == 2 || event_number == 3) {
    alert("Images on this page are:" +
"\n(c) Modular Industrial Solutions, Inc. All Rights Reserved." +
"\nUnauthorized image use violates US and International Copyright Law.");
    evt.cancelBubble = true;
    if (evt && evt.stopPropagation) evt.stopPropagation();
    return false;
  }
  return (true);
}

function trap_images_mouse_events () {
  if ( document.images ) {
    for (var pic=0; pic<document.images.length; pic++) {
      document.images[pic].onmousedown = disable_right_click;
    }
  }
}

window.onload = trap_images_mouse_events;
-->
