
var w = new Array(5); w[0] = 98; w[1] = 83; w[2] = 86; w[3] = 81; w[4] = 102;
var p = new Array(5); p[0] = 40; p[1] = 137; p[2] = 220; p[3] = 306; p[4] = 387;

function keepsel(i) {
	if (i != null) {
		var k = document.getElementById("keep");
		k.style.left = p[i]; 
		k.style.width = w[i]; 
		k.style.visibility = "visible";
	}
	setTimeout("reveal();", 3700);
}

function unsel() {
	var s = document.getElementById("sel");
	s.style.visibility = "hidden";
}

function setsel(i) {
	var s = document.getElementById("sel");
	s.style.left = p[i]; 
	s.style.width = w[i]; 
	s.style.visibility = "visible";
}

function reveal() {
	var t = document.getElementById("texto");
	if (t != null)
		t.style.visibility = "visible";
}

function infolssi() {
	window.open('infolssi.htm','ss1','width=482,height=345,resizable=no,scrollbars=yes,toolbar=no,location=no,directories=no,menubar=no,status=no,copyhistory=no');
}
