// JavaScript Document
function activa(obj){
	el = document.getElementById(obj);
	el.className = "col";
	imagen = document.getElementById("img"+obj);
	imagen.src = "images/testimonial_detalle_"+pagina+obj+".jpg";
}

function desactiva(obj){
	el = document.getElementById(obj);
	el.className = "colbn";
	imagen = document.getElementById("img"+obj);
	imagen.src = "images/testimonial_detalle_"+pagina+obj+"bn.jpg";

}

function activalistado(obj){
	obj.className="listadoover";
}

function desactivalistado(obj){
	obj.className="listado";
}

function solucion(){
	el = document.getElementById("selectsoluciones");
	destination = el.options[el.selectedIndex].value;
	if (destination) window.open(destination,"_blank"); 
}

function adapta(){
var caja=document.getElementById("mainInner");
var alto = 710;
	if (document.documentElement.clientHeight<alto){
		caja.style.top="30px";
		document.body.style.backgroundPosition = "center -130px";
		document.getElementById("containerBackground").style.top="-130px";
	}
}

window.onload = function(){adapta()}