function imagen(){

	if (conta == (numImg-1) ){
		conta = 0;
	}else{	
			conta = conta + 1;
	}
	
	var fileName = banners[conta];
	var innerTag = "";
	var innerTag_Path ="";
	if(getExtension(fileName)== "img"){
	
		innerTag_Path ="/futuretense_cs/Storage/CGE_Banner"; 
		innerTag_Path = innerTag_Path + "/" + fileName;
		innerTag = "<img src='"+ innerTag_Path +"' border=0 width=\"468\" height=\"60\">"
		var link = "<a href=" + urls[conta]  + ">";
		innerTag = link + " " + innerTag + "</a>";
	}else{
		
		var innerTag_Path ="/futuretense_cs/Storage/CGE_Banner"  ; 
		innerTag_Path = innerTag_Path  + "/" + fileName  + "?clickTAG="+escape(urls[conta]);
		innerTag = innerTag_PART1 + innerTag_Path +  innerTag_PART2  + innerTag_Path + " " + innerTag_PART3;
//alert(innerTag);
//document.writeln (innerTag);

	}

	document.getElementById('banner').innerHTML = innerTag; 
	
}

function getExtension(filename){
  	
  	var tipo = "";
	var extension = filename.substring( (filename.indexOf(".")+1), filename.length);
	if((extension == "gif")||(extension == "jpg")){
		tipo = "img";
	}else{
		tipo = "flash";
	}	
	return tipo;

}

function slider(){
		
		start = setInterval("imagen()", delayTime);
		
}
