//------------------------------------------------- imatges
//alterna les imatges en un mateix espai (ej: portada -> noticia amb mes d'una imatge)
setImageSimple = function(id, contador, total_images){
	//alert('OK2');
	for (i=1; i<=total_images; i++){
		document.getElementById('img_' + id + '_' + i).style.display = 'none';
	}
	document.getElementById('img_' + id + '_' + contador).style.display = 'block';
}


//alterna les imatges en un mateix espai (ej: portada -> noticia amb mes d'una imatge)
set_imatge = function(id,src, descr, autor){
	document.getElementById('img_'+ id).src = src;
	document.getElementById('descr_'+ id).innerHTML = descr;
	document.getElementById('autor_'+ id).innerHTML = autor;
}

//amaga les imatges i mostra el video
function setVideo(id, total_images){
	//alert('OK2');
	for (i=1; i<=total_images; i++){
		document.getElementById('img_' + id + '_' + i).style.display = 'none';
	}
	//document.getElementById('video_' + id).style.display = 'block';
	//document.getElementById('div_FLV_' + id).height = '440px';
	window.top.eval('video_' + id).flowPlayer1.DoPlay();
}


//---------------------------------------------------- mostres de nones i nots a mida
function goDetallMostra(selID){

	if (document.getElementById('winLoadingFile')){
		ColdFusion.Window.show('winLoadingFile');
		ColdFusion.navigate('/A_MIDA/detall_mostra.cfm?ID=' + selID,'winLoadingFile');
	}else{
			ColdFusion.Window.create('winLoadingFile', 'Bufallums',
						'/_TEMPLATES/null.cfm',
						{height:500,width:700,modal:true,closable:true,
						draggable:true,resizable:true,center:true,initshow:true
						});
			ColdFusion.navigate('/A_MIDA/detall_mostra.cfm?ID=' + selID,'winLoadingFile');
	}
	
}
