nofrOn = new Image()
nofrOn.src = "Icone/Titoli/NoFrame2.gif"
nofrOff = new Image()
nofrOff.src = "Icone/Titoli/NoFrame1.gif"
frOn = new Image()
frOn.src = "Icone/Titoli/Frame2.gif"
frOff = new Image()
frOff.src = "Icone/Titoli/Frame1.gif"
CinfoOn = new Image()
CinfoOn.src = "Cannabis.info/img/logo-cinfo2.gif"
CinfoOff = new Image()
CinfoOff.src = "Cannabis.info/img/logo-cinfo.gif"
LeggiOn = new Image()
LeggiOn.src = "Icone/scales2.gif"
LeggiOff = new Image()
LeggiOff.src = "Icone/scales.gif"
LeafOn = new Image()
LeafOn.src="Icone/Bottoni/leaf-icon2.gif"
LeafOff = new Image()
LeafOff.src="Icone/Bottoni/leaf-icon.gif"

function Seleziona(name,varName){name.src=varName.src}

function NewWindow() {
	window.name="Main";
	popup=window.open("","finestra_piccola","toolbar=1,location=0,directories=0,menuBar=0,scrollbars=1,resizable=1,width=640,height=450,left=0,top=15");
	popup.focus()
}

function makearray(n) {
this.length = n;
for(var i = 1; i <= n; i++)
this[i] = 0;
return this;
}
hexa = new makearray(16);
for(var i = 0; i < 10; i++)
hexa[i] = i;
hexa[10]="a"; hexa[11]="b"; hexa[12]="c";
hexa[13]="d"; hexa[14]="e"; hexa[15]="f";
function hex(i) {
if (i < 0)
return "00";
else if (i > 255)
return "ff";
else
return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setbgColor(r, g, b) {
var hr = hex(r); var hg = hex(g); var hb = hex(b);
document.bgColor = "#"+hr+hg+hb;
}
function ColSfondo(sr, sg, sb, er, eg, eb, step) {
for(var i = 0; i <= step; i++) {
setbgColor(
Math.floor(sr * ((step-i)/step) + er * (i/step)),
Math.floor(sg * ((step-i)/step) + eg * (i/step)),
Math.floor(sb * ((step-i)/step) + eb * (i/step)));
   }
}
ColSfondo(0,127,0,255,255,255,96);



