function ShowBanners() {

var maxAdNo = 2;

var adNo;

var myAd = new Array();

adNo = Math.round(Math.random() * maxAdNo);

if (adNo == 0)
{
	document.write('<a href="http://www.whoms.net/">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner2.jpg" border="0">');
	document.write('</a>');
}

else if (adNo == 1)
{
	document.write('<a href="http://www.whoms.net/">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner3.jpg" border="0">');
	document.write('</a>');
}
/**
if (adNo == 2)
{
	document.write('<a href="http://search.whoms.net/app/calculators.html">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner1.jpg" border="0">');
	document.write('</a>');
}

if (adNo == 3)
{
	document.write('<a href="http://search.whoms.net/download/skillupgrade.pdf">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner4.jpg" border="0">');
	document.write('</a>');
}

if (adNo == 4)
{
	document.write('<a href="http://search.whoms.net/download/skillupgrade.pdf">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner4.jpg" border="0">');
	document.write('</a>');
}

if (adNo >= 5)
{
	document.write('<a href="http://www.104mfonline.com.hk/MetroFinance/Property/wPropertyMain.aspx">');
	document.write('<img src="http://search.whoms.net/img/media/ads/banner_104.jpg" border="0">');
	document.write('</a>');
}
**/
}