function ShowBanners(position)
{
  var p1; 
  
  if(null == position)
    p1 = "left";
    
  this.document.write("<div id=\divAdLinks\">");
  this.document.write("<div style=\"float:");
  this.document.write(p1 +"; width:188px; vertical-align:middle; padding:0.1em;  background-color:blanchedalmond;") ;
  this.document.write(" filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr=lightblue, endColorstr=whitesmoke);"); 
  this.document.write(" border:solid 1px black;"); 
  this.document.write(" font-size:0.7em; text-align:left;"); 
  this.document.write("\">");
  this.document.write("<p style=\"font-weight:bold;\">These sponsors help support USA and this website.</p>");
  this.document.write("<div style=\"font-style:italic; margin:0.5em; text-align:center; padding:0.5em;\">Click on their logo<br/>and visit them!</div>"); 
  this.document.write("</div>"); 
  
  this.document.write ("<div style=\"padding:1em; \">");    
    
  
  /* Royal Canin - National Sponsor */ 
  /*************** Deleted 8/31/2009 per Craig Groh
      this.document.write("<div style=\"float:left; border: solid 1pt black; width:150px; height:80px; padding-top:10px; margin-bottom: 5px; margin-right:5px; padding-top:0; text-align:center; background-color:gold; font-size:0.8em; font-weight:bold;\">"); 
       this.document.write("<b>USA Gold Sponsor</b><br/>");
      this.document.write("<a href=\"http://www.royalcanin.us/products/productdetail.aspx?ID=35 \" title=\"USA Gold Sponsor&#13;Click to visit the Royal Canin website\" target=\"_blank\" align=\"center\">");   
   this.document.write("<img src=\"http://www.germanshepherddog.com/banners/GSBanner.jpg\"/></a></div>");   
   
   ****************** */
   
   /* Tri Tronics - National Sponsor */ 
   /* *************** Changed to regular sponsor 8/31/2009 per Craig Groh *********/
   this.document.write("<a href=\"http://www.tritronics.com\" title=\"Click to visit the Tritronics website\" target=\"_blank\" >");   
   this.document.write("<img src=\"http://www.germanshepherddog.com/banners/tritronics.gif\"/></a> <br />"); 
   
   
  /* K9 Power */ 
  this.document.write("<a href=\"http://www.K9Power.com\" title=\"Click to visit the K9 Power website\" target=\"_blank\"> "); 
  this.document.write("<img src=\"http://www.germanshepherddog.com/banners/k9power.jpg\" /></a>"); 
  
  /* Ray Allen */ 
  this.document.write("<a href=\"http://www.RayAllen.com\" title=\"Click to visit the Ray Allen website\" target=\"_blank\"> "); 
  this.document.write("<img src=\"http://www.germanshepherddog.com/banners/ray_allen.gif\" /></a>"); 
  
  /* Jim Hall - Hallmark K9 */
     this.document.write("<a href=\"http://www.hallmarkk9.com\" title=\"Click to visit the Hallmark K9 website\" target=\"_blank\">");   
   this.document.write("<img src=\"http://www.germanshepherddog.com/banners/hallmarkk9.gif\"/> </a> "); 

/* Horton's- 2 months starting 11*1*2009 end 1/1/2010 */
 /*    this.document.write("<a href=\"http://www.hortonsquality.com\" title=\"Click to visit the Horton's website\" target=\"_blank\">");   
   this.document.write("<img src=\"http://www.germanshepherddog.com/banners/hortons120.jpg\"/> </a> "); 
   */
   
   


   this.document.write("</div>");  /* of AdLinks */
   this.document.write("</div>");  /* of divAdLinks */
}
/****
* Banner Ad Rotater v3.02
* Anarchos > anarchos3@hotmail.com
* http://anarchos.xs.mw/bannerad.phtml
**/
/*
function Banner(refreshTime, width, height, altText, start, random){
	this.objName = "bannerAd" + (Banner.count++);
	eval(this.objName + "=this");
	if (!refreshTime) this.refreshTime = 5000; else this.refreshTime = refreshTime*1000;
	if (!width) this.width = 460; else this.width = width;
	if (!height) this.height = 68; else this.height = height;
	if (random == null) this.random = 1; else this.random = random;
	this.altText = altText;
	this.ads = [];
	if (start) this.currentAd = start-1; else start = null;
	this.mySize = 0;

	this.Ad = function(src, href, target, mouseover) {
		var tempImage = new Image();
		tempImage.src = src;
		this.ads[this.mySize] = new Object();
		var ad = this.ads[this.mySize];
		ad.src = src;
		if (typeof(target) == "undefined" || target == null) ad.target = "_self"; else ad.target = target;
		ad.href = href;
		ad.mouseover = mouseover;
		this.mySize++;
	}

	this.link = function(){
		var	ad = this.ads[this.currentAd];
		if (ad.target == "_self"){
			location.href = ad.href;
		}
		else if (ad.target == "_blank" || ad.target == "_new"){
			open(ad.href,this.objName + "Win");
		}
		else top.frames[ad.target].location.href = ad.href;
	}

	this.showStatus = function(){
		var ad = this.ads[this.currentAd];
		if (ad.mouseover) status = ad.mouseover;
		else status = ad.href;
	}

	this.randomAd = function(){
		var n;
		do { n = Math.floor(Math.random() * (this.mySize)); } 
		while(n == this.currentAd);
		this.currentAd = n;
	}

	this.output = function(){
		var tempCode = "";
		if (this.mySize > 1){
			if (this.currentAd == null) this.randomAd();
			if (this.currentAd >= this.mySize) this.currentAd = this.mySize - 1;
			tempCode = '<a href="javascript:'+this.objName+'.link();"';
			tempCode += ' onMouseOver="' + this.objName + '.showStatus(); return true"';
			tempCode += ' onMouseOut="status=\'\';return true">';
			tempCode += '<img src="' + this.ads[this.currentAd].src + '" width="' + this.width;
			tempCode += '" name="' + this.objName + 'Img" height="' + this.height + '" ';
			if (this.altText) tempCode += 'alt="'+this.altText + '" ';
			tempCode += 'border="0" /></a>';
			document.write(tempCode);
			this.nextAd();
		} else document.write("Error: two banners must be defined for the script to work.");
	}

	this.newAd = function(){
		if (!this.random){	
			this.currentAd++;
			if (this.currentAd >= this.mySize)
			   this.currentAd = 0;
		}
		else {
			this.randomAd();
		}
		this.nextAd();
	}

	this.nextAd = function(){
		document.images[this.objName+ 'Img'].src = this.ads[this.currentAd].src;
		setTimeout(this.objName+'.newAd()',this.refreshTime)
	}
}
Banner.count = 0;
*/