function RndFlashBanner(name,width,height,target){

	var cnt=Math.floor(Math.random()*(bnrFiles.length));

	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>');


	if(bnrFiles[cnt][0]!=""){
		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);
	}
}

