function swapImatgesPrev(imatge) {
	imatge.src="http://estatico.lavanguardia.es/lvd/lv24h2007/css/img/prev_rollover.gif";
	imatge.onmouseout=function() {
		imatge.src="http://estatico.lavanguardia.es/lvd/lv24h2007/css/img/prev_on.gif";				
	}
}

function swapImatgesNext(imatge) {
	imatge.src="http://estatico.lavanguardia.es/lvd/lv24h2007/css/img/next_rollover.gif";
	imatge.onmouseout=function() {
		imatge.src="http://estatico.lavanguardia.es/lvd/lv24h2007/css/img/next_on.gif";				
	}
}


function mostrarVideo(pSeccio, codiyoutube, mostrarmoscalv, flv, thumbnail, idVideo, id, titulo, cridaUrl, autor, divId, width, height, swfplayer, tipus) {


	if (codiyoutube=='NO') {
		
		
		document.getElementById(divId).style.height=""+height+"px";
		
		var so = new SWFObject("http://www.lavanguardia.es/media/swf/player.swf", "mediaviewer", ""+width, ""+height, "9", "#FFFFFF");
		so.addVariable("v_flv", flv);
	
		if(mostrarmoscalv=='SI') {
			so.addVariable("v_mosca", "http://estatico.lavanguardia.es/lvd/lv24h2007/imatges/moscaLV_videos.png");
		}
		so.addVariable("v_thumbnail", thumbnail);
		so.addParam("allowFullScreen", "true");

		titol_pre = titulo.replace(/¨/g, "\"");
		titol_def = titol_pre.replace(/´/g, "'");		

		<!-- omniture --> 
		var titolVideo = titol_def;
		var seccio = pSeccio;
		var channel = titol_def + '.' + width + 'x' + height;
		var hierarchy = 'Videos.' + seccio + '.' + titol_def + '.' + width + 'x' + height;
		var account = "godolavanguardia";
		<!-- var account = "godotestvideo"; --> 
		var visitorNamespace = "grupogod";


		so.addVariable("o_pageName", ""+titolVideo);			
		so.addVariable("o_account", ""+account);
		so.addVariable("o_visitorNamespace", ""+visitorNamespace);
		so.addVariable("o_hier2", ""+hierarchy);
		so.addVariable("o_channel", ""+channel);
		so.addVariable("o_eVar1", ""+titolVideo);
		so.addVariable("o_eVar2", ""+seccio);
		so.addVariable("o_half", "true");
		so.addVariable("o_completed", "true");


		so.write(""+divId);
	}
	else {					
		

		if (height=='282') {
			document.getElementById(divId).style.height="290px";
		}
		else {
			document.getElementById(divId).style.height="193px";
		}	

		
		youtube_pre = codiyoutube.replace(/¨/g, "\"");
		youtube_def = youtube_pre.replace(/´/g, "'");						
		

		content = '';
		content = '<b>' + content + youtube_def + '</b>';							
		
		
		divContenidor = document.getElementById(divId);			
		divContenidor.innerHTML = content;		

	}


	if (tipus=='THUMBNAILS_I_TITULO') {

		titol_pre = titulo.replace(/¨/g, "\"");
		titol_def = titol_pre.replace(/´/g, "'");		

		divVideos = document.getElementById("c"+id+width);

		content = '<a href="' + cridaUrl + '">' + titol_def + '</a>';
		content = content + '<span>&nbsp;' + autor + '</span>';

		divVideos.innerHTML = content;

	}
	if (tipus=='SOLO_THUMBNAILS') {

		divVideos = document.getElementById("c"+id+width);

		content = '<span>' + autor + '&nbsp;</span>';

		divVideos.innerHTML = content;

	}

	return(0);


}

