function resize() {
			width=screen.availWidth;
			height=screen.availHeight;
			parent.window.moveTo(0,0);
			parent.window.resizeTo(Math.ceil(width), Math.ceil(height));
		}

var message="Gisela Giardino Web Design: Todo lo expuesto en este sitio web está protegido por leyes de copyright. Queda prohibido el uso o reproducción total o parcial de este material sin permiso expreso.";

function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

rgb_beg=[100,255,100]
rgb_end=[255,0,150]
over_spd=20
out_spd=25

document.onmouseover = domouseover;
document.onmouseout  = domouseout;
document.onclick     = doclick;

dualhex = new Array()
hex = ["0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"]
for(i = 0; i < 256; i++) dualhex[i] = hex[parseInt(i / 16)] + hex[i % 16]

function domouseover() {
  if (document.all && window.event.srcElement.tagName == "A")
    fade(window.event.srcElement.sourceIndex, 1)
}

function domouseout() {
  if (document.all && window.event.srcElement.tagName == "A")
    setTimeout("fade('" + window.event.srcElement.sourceIndex + "', 0)", over_spd * over_spd * 2)
}

function doclick() {
  if (document.all && window.event.srcElement.tagName == "A")
    window.event.srcElement.blur();
}

function fade(element, over) {
  if(over) {
    beg = rgb_beg;
    end = rgb_end;
    spd = over_spd;
  }
  else {
    beg = rgb_end;
    end = rgb_beg;
    spd = out_spd;
  }
  for(i = 0; i <= spd; i++)
    setTimeout("document.all[" + element + "].style.color = '#"
     + dualhex[Math.floor(beg[0] * ((spd - i) / spd) + end[0] * (i / spd))]
     + dualhex[Math.floor(beg[1] * ((spd - i) / spd) + end[1] * (i / spd))]
     + dualhex[Math.floor(beg[2] * ((spd - i) / spd) + end[2] * (i / spd))] + "';",  i * spd);
}