<!-- Begin
// written by Vady.
// vady@i.com.ua

var myBanners = new Array();
var myTexts = new Array();
var myLinks = new Array();

// Set up the image files here.
myBanners[0] = '01n.gif';
myTexts[0] = 'The Clicks Counter Pro is the best tool for your site statistic. It could also be used as clicks or downloads counter and ROI tracker. &#013;The CCP delivers the information you need to run a successful Web site in a way that you can understand. Check it!';
myLinks[0] = 'http://www.clicks-counter-pro.com/';
myBanners[1] = '03n.gif';
myTexts[1] = 'Return on Investment Tracking Pro offers real-time reporting that brings each of your advertising to conformity with the campaign origin. Find out what makes your site visitors convert into clients. Don\’t waste your money. Make them work.';
myLinks[1] = 'http://www.roi-tracking-pro.com/';
myBanners[2] = '02n.gif';
myTexts[2] = 'Site Search Pro 2.0 is ultimate site search script. Multiple sites indexing, multiple design and output profiles, indexing schedule, multi-language support and mass of other functions! Let us show you, check out FREE ONLINE DEMO!';
myLinks[2] = 'http://www.site-search-pro.com/';
myBanners[3] = '04n.gif';
myTexts[3] = 'FAQ Manager Pro is comprehensive FAQ and knowledgebase solution. Powerful templates management options, including online templates editor. Easy installation and instant work. Built-in filter: full control on questions and answers! WYSIWYG editor. Detailed Statistic and Analysis: Get all the information over customer interests and effectiveness. Customer comments. Articles Rating. Printable Articles. Automatic Related Articles option. Powerful searching and full search history. Multi-Language support. Unlimited number of subcategories. Top XX questions and Last XX questions options. Full administrator log available. Stop talking! Let us show you, check out FREE ONLINE DEMO!';
myLinks[3] = 'http://www.faq-manager-pro.com/';

//Settings for adv images
var myWidth = 162;
var myHeight = 88;
var imgPath = '../images/';

var p = myBanners.length;
var preBuffer = new Array();
for (var i = 0; i < p; i++) {
	preBuffer[i] = new Image();
	preBuffer[i].src = myBanners[i];
}
var whichImage = Math.round(Math.random()*(p-1));
function showAds() {
	document.write('<a href="' + myLinks[whichImage] + '" target="_blank">');
	document.write('<img src="'+ imgPath + myBanners[whichImage] +'" width="'+ myWidth +'" height="'+ myHeight +'" alt="'+ myTexts[whichImage] +'" border="0">');
	document.write('</a>');
}

//  End -->