//------------------------------------------------------------------
//   SCRIPT NAME: DispBanner.js
//   DESCRIPTION: Display banner ads
//         INPUT: none
//        AUTHOR: mli@kuhnmarketing.com
// CREATION DATE: 5/20/2000
//      MODIFIED:
//------------------------------------------------------------------

function DispBanner(IndustryType){

var bswr=false;

  var theImages=new Array();
  
  theImages[0]="banner_kuhn.gif";

  theImages[1]="banner_glegg.gif";

  theImages[2]="banner_sewca.gif";

  theImages[3]="banner_engel.gif";

  theImages[4]="banner_mm.gif";
  
  theImages[5]="banner_ats.gif";
  
  var theAlt=new Array();
  
  theAlt[0]="Kuhn Technology Marketing";
  
  theAlt[1]="GE Glegg";

  theAlt[2]="SEW-Eurodrive Canada";

  theAlt[3]="Engel Machinery";
    
  theAlt[4]="Mold-Masters";
  
  theAlt[5]="ATS Automation Tooling System";
  
  var bannerID=new Array();
 
  bannerID[0]="10";

  bannerID[1]="14";

  bannerID[2]="9";

  bannerID[3]="12";
  
  bannerID[4]="13";
  
  bannerID[5]="11";
  
  var theLink=new Array();
 
  theLink[0]="http://www.kuhnmarketing.com";

  theLink[1]="http://www.glegg.com";

  theLink[2]="http://www.sew-eurodrive.ca";

  theLink[3]="http://www.engelmachinery.com";
  
  theLink[4]="http://www.moldmasters.com";
  
  theLink[5]="http://www.atsautomation.com";
  
  if (navigator.userAgent.indexOf("Mozilla/3") != -1 ||

      navigator.userAgent.indexOf("Mozilla/4") != -1) bswr=true;


if (bswr) {

imagenumber = Math.floor(Math.random() * 6);

document.write('<br><A HREF="adclick.asp?Key=' + bannerID[imagenumber]+ '&URL=' + theLink[imagenumber] + '"><img src=../images/' + theImages[imagenumber] + ' BORDER=0 ALT="' + theAlt[imagenumber] + '" width=468 height=60></A>');

}  else {

document.write('<br><A HREF="http://www.kuhnmarketing.com"><img src="../images/kuhn_banner.jpg" ALT="Kuhn Technology Marketing"></A><br>');


	}
}

function DispFoot(){

document.write('<div align=center><font size="1">Copyright 1996-2010 © <a href="http://www.industrylink.com"><font size="1">IndustryLink.com</font></a>, All rights reserved.</font>');
document.write('<br><font color=#0099FF size="1"><a href="http://www.kuhnmarketing.com"><font color=#0099ff style="text-decoration : none" size="1">Powered by Kuhn Technology Marketing</font></a></font></div><br>');
}