function rolloverLogo(mfrname) {
	document.images[mfrname].src = "images/logo_" + mfrname + ".gif";
}

function rolloutLogo(mfrname) {
	document.images[mfrname].src = "images/logo_" + mfrname + "2.gif";
}

function rollover(whichpage) {
	document.Sidebar.src = "images/side" + whichpage + ".gif";
}

function rollout() {
	document.Sidebar.src = "images/side" + thispage + ".gif";
}

function OpenWindow( mfr, width, height, options, name )
{
  url = "CWsub_" + mfr + ".htm";
  if ( ! width ) width = 475;
  if ( ! height ) height = 350;
  if ( ! options ) options =
"scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes,resizable=yes";
  if ( ! name ) name = "outsideSiteWindow";
  var newWin = window.open( url, name, "width=" + width + ",height=" +
height + "," + options );
  newWin.focus();
}

