<!--
function Banner() {
	this.items = new Array();
	this.addItem = bannerAddItem;
	this.start = bannerStart;
}

function bannerAddItem(img, link, title) {
	var ext = img.substr(img.lastIndexOf(".") + 1).toLowerCase();
	var str;

	if (ext == "swf") {
		if (link == "") {
			str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="400" width="776"><param name="movie" value="' + img + '"><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="scale" value="noborder" /><embed src="' + img + '" wmode="transparent" scale="noborder" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="776" height="400"></embed></object>';
		} else {
			str = '<a href="' + link + '" target="_blank"><img src="/images/transparent.gif" border="0" width="776" height="400" border="0" alt="' + title + '" style="position:absolute;" /></a><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" height="400" width="776"><param name="movie" value="' + img + '"><param name="quality" value="high" /><param name="wmode" value="transparent" /><param name="scale" value="noborder" /><embed src="' + img + '" wmode="transparent" scale="noborder" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="776" height="400"></embed></object>';
		}
	} else {
		if (link == "") {
			str = '<img src="' + img + '" border="0" alt="' + title + '" />';
		} else {
			str = '<a href="' + link + '" target="_blank"><img src="' + img + '" border="0" alt="' + title + '" /></a>';
		}
	}

	this.items[this.items.length] = str;
}

function bannerStart() {
	var i = Math.floor(Math.random() * this.items.length);
	document.write(this.items[i]);
}

function ShowFull() {	
	setTimeout('document.getElementById("divFullScreen").style.display = "block";', 1000);
	setTimeout('document.getElementById("divFullScreen").style.display = "none";', 3000);
}

document.write('<div align="left" style="display:none; height:120px;" id="divFullScreen" name="divFullScreen">');
var fullscreenPic = new Banner();
fullscreenPic.addItem("/cimage/22.jpg","http://www.cnecora.com","");
fullscreenPic.start();
document.write('</div>');
ShowFull();

//-->