function RndFlashBanner(name,width,height,target){

	var cnt=Math.floor(Math.random()*(bnrFiles.length));
//alert(cnt);

	var strGif="";
	strGif+="<a href='"+bnrFiles[cnt][2]+"' target='"+ target +"'>";
	strGif+="<img src='"+bnrFiles[cnt][1]+"' border='0' width='"+ width +"' height='"+ height +"'>";
	strGif+="</a>";

	document.write('<div id="'+ name +'">');
	document.write(strGif);
	document.write('</div>');

	var flashvars = null;
	var params = {
	  menu: "false",
	  wmode: "transparent",
	  flashvars: "clickTag="+ escape(bnrFiles[cnt][2]) +"&clickTarget="+ target
	};
	var attributes = null;

	swfobject.embedSWF(bnrFiles[cnt][0], name, width, height, "9.0.0", "/system/swfobject/expressInstall.swf", flashvars, params, attributes);

}
