colo_in  = '#000099';
colo_df = '#0000FF';
colo_clk = '#7700D8';
mi=0;

function cu_in(x){
colo_bg=x.style.backgroundColor;
x.style.backgroundColor=colo_in; 
}

function cu_out(x){
x.style.backgroundColor=colo_bg; 
}

function cu_chk(x){
colo_bg=colo_clk;
if(mi == 0) {mi=x; return;}
mi.style.backgroundColor=colo_df;
mi=x;
}

//detecta navegador
function checkIt(string){
	var detect = navigator.userAgent.toLowerCase();
	place = detect.indexOf(string) + 1;
	thestring = string;
	return place;
}

//adaptar la altura del iframe a su contenido
function resize() {
	if (checkIt('opera')){
	alert("opera")
		document.getElementById("jos").height = document.getElementById("jos").document.body.scrollHeight;
	}
		document.getElementById("jos").height = document.getElementById("jos").contentWindow.document.body.scrollHeight;
	}

function mostrar(nombreCapa){ 
	document.getElementById(nombreCapa).style.visibility="visible"; 
} 

function ocultar(nombreCapa){ 
	document.getElementById(nombreCapa).style.visibility="hidden"; 
} 
