// JavaScript Document

function colora(pcella) {
  pcella.style.background = '#D7FFAD';
}
function decolora(pcella, pcolore) {
  if (pcolore>'')
    pcella.style.background = pcolore;
  else
    pcella.style.background = 'none';
}

function mostrasezione(psezione) {
	if (document.getElementById) {
		stilesezione = document.getElementById(psezione).style;
		imgaa = document.getElementById("img_" + psezione);
		if (stilesezione.display == "block") {
			stilesezione.display = "none";
			imgaa.src = "../img/frecciasu_arancio.png"
		}
		else {
			stilesezione.display = "block"
			imgaa.src = "../img/frecciagiu_arancio.png"
		}
		return false
	}
	else
		return true;
}
function scambiafreccia(psezione) {
	stilesezione = document.getElementById(psezione).style;
	imgaa = document.getElementById("img_" + psezione);
	if (stilesezione.display == "block")
		imgaa.src = "../img/frecciasu_blu.png"
	else
		imgaa.src = "../img/frecciagiu_blu.png"
}

function ripristinafreccia(psezione) {
	stilesezione = document.getElementById(psezione).style;
	imgaa = document.getElementById("img_" + psezione);
	if (stilesezione.display == "block")
		imgaa.src = "../img/frecciagiu_arancio.png"
	else
		imgaa.src = "../img/frecciasu_arancio.png"
}


function mostranascondilivello(a){
  var e=document.getElementById(a);
  if(!e)return;
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  return;
}


function addbookmark() {
	if (document.all)
		window.external.AddFavorite("http://www.chrisneel.it/","Chris Neel Web Site")
}


function scriviemail() {
	var dominio = "chrisneel.it"
	var utente = "webmaster"
	var destinatario = utente + "@" + dominio
	var indirizzo = "mailto:" + destinatario
	document.write("Invia una e-mail a: " + destinatario.link(indirizzo) + "<br><br><a href=\"javascript:history.back(-1)\">Torna indietro</a>");
}


function stampacontenuto() {
	var l1 = document.getElementById("livello_menusx");
	var l2 = document.getElementById("livello_navibar");
	var l3 = document.getElementById("livello_titolodicoda");
	var l4 = document.getElementById("livello_copyright");

	if(!l1 || !l2 || !l3 || !l4) {
		alert("Impossibile avviare la stampa");
		return;
	}

	l1.style.display="none";
	l2.style.display="none";
	l3.style.display="none";
	l4.style.display="none";

	window.print();

	l1.style.display="block";
	l2.style.display="block";
	l3.style.display="block";
	l4.style.display="block";
	
	return;
}