//variables globales
var foto_actual=0; //indice de la foto que se esta mostrando 


function move_ff ()
{
	var cantidad= document.getElementById('cantidad_foto').value;
		if (document.getElementById('picture['+ (foto_actual + 1)+']'))
		{
			document.getElementById('picture['+ foto_actual+']' ).style.display="none";
			foto_actual++;
			document.getElementById('picture['+ foto_actual+']').style.display="block";
			
			document.getElementById('texto_foto').innerHTML="Foto "+ (foto_actual + 1) + " de "+cantidad;
		}	
}
function move_bw ()
{
		var cantidad= document.getElementById('cantidad_foto').value;
		if (document.getElementById('picture['+ (foto_actual - 1)+']'))
		{
			document.getElementById('picture['+ foto_actual+']' ).style.display="none";
			foto_actual--;
			document.getElementById('picture['+ foto_actual+']' ).style.display="block";
			document.getElementById('texto_foto').innerHTML="Foto "+ (foto_actual + 1) + " de "+cantidad;
		}
}

function popupTele(from,id)
{
	if (from=='INTERNET') {
		var url="intranet/popupTelevisor.php?id="+id+"&from="+from;
	} else {
		var url="popupTelevisor.php?id="+id+"&from="+from;
	}

	var win=window.open(url,'','width=680,height=530');

}