var noticia_colortexto="000000";
var noticia_colorfondo="CCCC99";

function iniciar_noticia(i){
	
	cadena="";	
	var curr=eval("document.modulos.noticia_curr"+i);
	var noticia_total=parseInt(eval("document.modulos.noticia_total"+i).value);
	noticia_colorfondo=eval("document.modulos.noticia_colorfondo"+i).value;
	noticia_colortexto=eval("document.modulos.noticia_colortexto"+i).value;
	
	
	ini=parseInt(curr.value);
	fin=ini+5;
	
	if (ini>noticia_total){
		ini=0
		fin=ini+5
		curr.value=0
	}
	
	filtro=parseInt(eval("document.modulos.noticia_filtro"+i).value)
	var n=0
	for (s=0;s<noticia_total;s++){	
		noticia_tipo=eval("document.modulos.noticia_tipo"+i+"_"+s).value;
		if ((filtro==0)||(filtro==noticia_tipo)){
			if ((n>=ini)&&(n<fin)){
			id=eval("document.modulos.noticia_id"+i+"_"+s);
			titulo=eval("document.modulos.noticia_titulo"+i+"_"+s);
			texto=eval("document.modulos.noticia_texto"+i+"_"+s);
			imagen=eval("document.modulos.noticia_imagen"+i+"_"+s);
			if (id!=null) cadena=cadena+cuerpo_noticia(i,id,titulo,texto,imagen,noticia_tipo);			
			}				
		n=n+1
		}
		
		
	}
	
	obj=layer("div_noticia"+i)
	
	obj.innerHTML=cadena;
}

function noticia_inicio(i){
	var curr=eval("document.modulos.noticia_curr"+i);
	curr.value=0
	iniciar_noticia(i)
	
}

function noticia_anterior(i){
	var curr=eval("document.modulos.noticia_curr"+i);
	curr.value=parseInt(curr.value)-5
	if (curr.value<0) curr.value=0
	iniciar_noticia(i)
}
function noticia_siguiente(i){
	var curr=eval("document.modulos.noticia_curr"+i);
	curr.value=parseInt(curr.value)+5
	iniciar_noticia(i)

}
function noticia_final(i){
	var curr=eval("document.modulos.noticia_curr"+i);
	curr.value=fin
	iniciar_noticia(i)
}

function noticias_filtrar(i,n){
	obj=eval("document.modulos.noticia_filtro"+i)
	obj.value=n
	var curr=eval("document.modulos.noticia_curr"+i);
	curr.value=0
	iniciar_noticia(i)
}

function cuerpo_noticia(i,id,titulo,texto,imagen,noticia_tipo){
    var tipo_modulo=eval("document.modulos.tipo_modulo"+i).value
    
    doc="<table width=\"100%\" border=\"0\" cellspacing=\"1\" cellpadding=\"1\">"
    doc=doc+"<tr>"
    
    url="visor.asp?id_dato="+id.value
    
      
    	not_name=""
    	
    	if (noticia_tipo==1) not_name="multimedia_video.jpg"
    	if (noticia_tipo==2) not_name="multimedia_music.jpg"        	
    	if ((noticia_tipo==3)||(noticia_tipo==4)) not_name="multimedia_wall.jpg"     	
    
    	
    
        
    if (noticia_tipo==3) {
    	doc=doc+"<td width=\"115\" height=\"79\" bgcolor=\"#"+noticia_colorfondo+"\" width=115 align=middle valign=top>"
    	doc=doc+"<a href=\"javascript:abrir_ventana('"+url+"','galeria',640,480)\">"
    	doc=doc+"<img src=\""+imagen.value+"\" width=\"115\" height=\"77\" border=0></a>"
    	doc=doc+"</td>"
    	}
    	else 
    	{
        	doc=doc+"<td width=\"115\" height=\"79\" bgcolor=\"#"+noticia_colorfondo+"\" width=115 align=middle valign=top>"
        	doc=doc+"<a href=\"javascript:abrir_ventana('"+url+"','galeria',640,480)\">"
        	doc=doc+"<img src=\"images/"+not_name+"\" border=0></a>"
        	doc=doc+"</td>"
    	}
    	
    doc=doc+"<td  bgcolor=\""+noticia_colorfondo+"\" valign=top>"
    
    doc=doc+"<table width=\"100%\" border=\"0\" align=\"center\" cellpadding=\"0\" cellspacing=\"0\">"
    doc=doc+"<tr>"
    doc=doc+"<td valign=top><b>"+titulo.value+"</td>"
    doc=doc+"</tr>"
    doc=doc+"<tr>"
    doc=doc+"<td><span>"+texto.value+"</td>"
    doc=doc+"</tr>"
    doc=doc+"</table>"
   
    
    doc=doc+"</td>"
    doc=doc+"</tr>"
    doc=doc+"</table>"
    
    return doc;
}