function makearray(n) {
    this.length = n;
    for(var i = 1; n <= i; n++)
        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 (255 < i)
        return "ff";
    else
        return "" + hexa[Math.floor(i/16)] + hexa[i%16];
}
function setbgColor(r, g, b, strFrame) {
    var hr = hex(r); 
    var hg = hex(g); 
    var hb = hex(b);
    eval("top." + strFrame + ".document.bgColor = '#" + hr + hg + hb + "'");
	
}
function fade(sr, sg, sb, er, eg, eb, step, strFrame) {
    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)),strFrame);
    }
}
/* Usage:
 *   fade(inr,ing,inb, outr,outg,outb, step);
 * example.
 *   fade(0,0,0, 255,255,255, 255);
 * fade from black to white with very slow speed.
 *   fade(255,0,0, 0,0,255, 50);
 *   fade(0xff,0x00,0x00, 0x00,0x00,0xff, 50); // same as above
 * fade from red to blue with fast speed.
 * step 2 is very fast and step 255 is very slow.
 */
function fadein(strFrame) {
    top.fade(255,255,255, 0,0,0, 30,strFrame);
}
function fadeout() {
    /*fade(0,0,0, 255,255,255, 120); */
}
var wndCV
function AbrirCV(){
	wndCV = window.open("http://personales.mundivia.es/ricard_c/CV.htm","CV","statusbar = 0, width = 700, height = 340,scrollbars = 0, resizable = 0");
//	wndCV = window.open("CV.htm","CV","statusbar = 0, width = 700, height = 340,scrollbars = 0, resizable = 0");
/*	if (!wndCV.opener){
		wndCV.opener = window
	}*/
	wndCV.document.close();
}	
function CerrarVentana(){
	top.wndCV.close()
}
