//Cambiamento di colore al passaggio del mouse
function my_over(arg,color){
	arg.style.cursor="pointer";
	if(color==null){
		arg.style.backgroundColor="#E6BC6F";
	}else{
		arg.style.backgroundColor=color;
	}
}
//Eliminazione del colore
function my_out(arg,color){
	arg.style.cursor="pointer";
	if(color==null){
		arg.style.backgroundColor="";
	}else{
		arg.style.backgroundColor=color;
	}
}
//Simulazione del HREF
function url_jump(arg) {
	window.document.location.href=arg;
}
//Messaggio di alert
function my_error(frase,url){
	if (!confirm(frase)) {
		return;
	}
	window.document.location.href = url;
}
//Coloro la riga quando selezione la check-box
function click_color_over(arg,id) {
	var obj = document.getElementById(id);
	if(obj.checked!=true){
		obj.checked=true;
		arg.style.backgroundColor="#E6BC6F";
	}else{
		obj.checked=false;
		arg.style.backgroundColor="";
	}
}

