// JavaScript Document
function VerCliente(strPath)
{	document.getElementById('DetalleCliente').src = strPath; 	}
		

function VerAnterior()
{	if (i>0)
	{	i--;
		document.getElementById('Visualizador').src = Path + Imagenes[i];
		window.setTimeout('ResizeVisualizador()',1500);
	}
	else
	{	i = Imagenes.length;
		VerAnterior();
	}
}

function VerSiguiente()
{	if (i<Contador)
	{	i++;
		document.getElementById('Visualizador').src = Path + Imagenes[i];
		window.setTimeout('ResizeVisualizador()',1500);
	}
	else
	{	i=-1;
		VerSiguiente();
	}
}

function ResizeVisualizador()
{	try
	{	var pWidth, pHeight;
		pWidth = document.getElementById('Visualizador').width + 200
		pHeight = document.getElementById('Visualizador').height 
		
		if (pWidth<683) {	pWidth='683';	}
		parent.document.getElementById('divContenido').style.width =  pWidth + 'px';
		parent.document.getElementById('divContenido').style.height =  pHeight + 'px';
		parent.document.getElementById('DetalleCliente').style.width = pWidth + 'px';
		parent.document.getElementById('DetalleCliente').style.height = pHeight + 'px';
		
		document.getElementById('Paginador').innerHTML = '&nbsp;' + (i+1) + '&nbsp;/&nbsp;' + Imagenes.length + '&nbsp;'; 
	}
	catch(err)
	{
	} 
}

function multiimgs()
{
	var img_name = new Array("img/lopatao_home00.jpg", "img/lopatao_home01.jpg", "img/lopatao_home02.jpg","img/lopatao_home03.jpg", "img/lopatao_home04.jpg", "img/lopatao_home05.jpg", "img/lopatao_home06.jpg", "img/lopatao_home07.jpg", "img/lopatao_home08.jpg", "img/lopatao_home09.jpg", "img/lopatao_home10.jpg", "img/lopatao_home11.jpg");
	var l = img_name.length;
	var rnd_no = Math.round((l-1)*Math.random());
	document.r_img.src = img_name[rnd_no];
}