var scelta=new Array("font-family:verdana","color:default","font-weight:bold; ","font-style:italic;" ,"text-decoration:underline; ","text-transform:uppercase; ")
//document.MioForm.colore.value=''
document.MioForm.valore.value=''
//document.MioForm.sfondo.value=''
risulta=''
for (i=0;i<=6;i++) { document.MioForm.stili[i].checked=false;}
document.MioForm.tipo.disabled=true;
document.MioForm.colore.disabled=true;
document.MioForm.sfondo.disabled=true;
function applica(){
if (!document.all && !document.getElementById){
alert("Il tuo browser non supporta questo metodo")
return
}
scelta[0]="font-family:"+document.MioForm.tipo.value+"; "
scelta[1]="color:"+document.MioForm.colore.value+"; "
scelta[6]="font-size:"+document.MioForm.valore.value+"; "
scelta[7]="background-color:"+document.MioForm.sfondo.value+"; "
risulta=''
for (i=0;i<=7;i++){
if (document.MioForm.stili[i].checked==true)
risulta+=scelta[i]
}
if (risulta=='')
risulta="color: default"
if (document.styleSheets[0].removeRule){
document.styleSheets[0].removeRule(1)
document.styleSheets[0].addRule("a:hover",risulta)
}
else if (document.styleSheets[0].deleteRule){
thesheetNS6="a:hover{"+risulta+"}"
document.styleSheets[0].deleteRule(1)
document.styleSheets[0].insertRule(thesheetNS6, 1)
}
}


function creaCodice(){
document.inizio.testo.value='<!-salvato da (http://www.webfract.it)-->\n<style>\na:hover{'+risulta+'}\n</style>'
}



