function GetXmlHttpObject(){
var xmlhttp=false;
try{
	xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
}catch(e){
	try{
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 	}catch(E){
		xmlhttp = false;
	}
}
if(!xmlhttp && typeof XMLHttpRequest!='undefined'){
	xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function MostrarRecurso(){
document.getElementById("Imagenes").style.display="block";
}
function OcultarRecurso(){ 
document.getElementById("Imagenes").style.display="none";
document.getElementById("VerImagenes").innerHTML = '';
}
function imprimir(){
if (window.print)window.print();else alert("No se pudo imprimir");
}
function JmpCambioImagen(itm){
  var strImagenArchivo = "http://www.linxs.com.bo/imagenes/";
  document.getElementById("fimagenw").src=strImagenArchivo+Imagenes[itm];
  thumbFocus(itm);
}
function thumbFocus(actual){
  	Ssel = '#FF0000';
	Nsel= '#666666';
	for(var i = 0; i < Imagenes.length; i++){
	document.getElementById("thumb"+i).style.borderColor = Nsel;
	}
	document.getElementById("thumb"+actual).style.borderColor = Ssel;
}