if(document.getElementById && document.createElement){
document.write('<style type="text/css">*.toggle{display:none}</style>');

var prevOnload = null;
if (window.onload) prevOnload = window.onload;
window.onload=function(){
    /*le modifiche allo script vanno solo fatte qui*/
    Attiva("offerta2","Clicca qui per vedere l'offerta per Aziende da 20 fino a 50 Dipendenti","Nascondi l'offerta");
    Attiva("offerta3","Clicca qui per vedere l'offerta per Aziende da 50 fino a 100 Dipendenti","Nascondi l'offerta");
    Attiva("offerta4","Clicca qui per vedere l'offerta per Aziende oltre i 100 Dipendenti","Nascondi l'offerta");
	if (prevOnload) prevOnload();
    }
}

function Attiva(id,s1,s2){
var el=document.getElementById(id);
el.style.display="none";
var c=document.createElement("div");
var link=document.createElement("a");
link.href="#";
link.style.margin="0 auto";
link.style.fontSize="20px";
link.style.lineHeight="1.8em";
link.style.textDecoration="underline";
link.style.color="blue";
link.appendChild(document.createTextNode(s1));
link.onclick=function(){
    link.firstChild.nodeValue = (link.firstChild.nodeValue==s1) ? s2 : s1;
    el.style.display=(el.style.display=="none") ? "block" : "none";
    return(false);
    }
c.appendChild(link);
el.parentNode.insertBefore(c,el);
}

