<!-- 
function mybanner(channel) {

	var usr = "null";
	/////////////////////////////////////////////////////////////////////////////////////////
	// Modify this section
	/////////////////////////////////////////////////////////////////////////////////////////	
	// Define the Channels in a Array arrC
	var arrC = new Array('biz','10','bizon','10','chats','10','class','10','discuss','10','ent','10','freepages','10',
						 'greet','10','hom','10','hom1','10','icard','10','life','10','mailbox','10','news','10','nig','10',
						 'page','10','person','10','personals','10','search','10','snc','10','spo','10','wor','10');
	/////////////////////////////////////////////////////////////////////////////////////////




	/////////////////////////////////////////////////////////////////////////////////////////
	// Please do not modify this section
	/////////////////////////////////////////////////////////////////////////////////////////

	//Find the Channel here
	for (i=0;i<arrC.length ;i++ ) {	if (arrC[i] == channel)	{var num = i} }

	curDate = new Date();
	curSec = curDate.getSeconds();
	banner = curSec % arrC[num+1];
	banner = banner + 1;

	bLine  = '<A HREF=/cgi-bin/banners/bannerad.pl?bf='+channel+'&channel='+banner+'&usr='+usr+'>';
	bLine += '<IMG SRC="/banners/'+channel+'ch'+banner+'.gif" ALIGN=middle BORDER=0 WIDTH=468 HEIGHT=60></A><BR>';
	bLine += '<FONT SIZE=1 FACE=verdana,arial><CENTER><A HREF=/cgi-bin/banners/bannerad.pl?bf='+channel+'&channel=';
	bLine += banner+'&usr='+usr+'>'+'Click Here'+'</A><BR></CENTER></FONT>';

	document.write(bLine);
}
-->