// JavaScript Document

var speed = 30; 

var T = " Anguana ";

var s = 0 
var sT = null; 
function esegui() { 
s++; 
if (s > 1) { s = 1;} 
if (s == 1) { document.title = T; } 

sT = setTimeout("esegui()", speed); 
} 
esegui();

var osd = "                                      "
var timer;
var msg = "";
function scrollMaster () {
clearTimeout(timer)
msg += "  " + osd
for (var i= 0; i < 100; i++){
msg = " " + msg;
}
scrollMe()
}
function scrollMe(){
window.status = msg;
msg = msg.substring(1, msg.length) + msg.substring(0,1);
timer = setTimeout("scrollMe()", 90);
}

scrollMaster();
// End -->


function clk(obj){ // fa partire il link anche se non è stato clikkato il link stesso ma la sola cella
	if (document.all && obj.children.tags("A").length > 0 && obj.children.tags("a")[0].href)
		obj.children.tags("A")[0].click();
	else if (!document.all) {
		if (obj.document && obj.document.links[0]) location.href = obj.document.links[0].href;
		else if (obj.getElementsByTagName("a")){ 
			var links = obj.getElementsByTagName("a");
			if (links[0])
				location.href = links[0].href;
			}
		}
}

function over(obj) {
	obj.style.cursor = "hand";
	obj.style.background = "#ff9a31";
}

function out(obj) {
	obj.style.cursor = "";
	obj.style.background = "";
} 

		var primo = true;
		function cancella(ind) {
			if (primo) {
				ind.value="";
				primo = false;
			}
		}

function ric() {
	parent.main.location.href="ricerca/ricerca.htm";
}
