/* Fade Script v0.1 by Kouichirou@Eto.com 1996 * Copyright (c) 1996 Kouichirou Eto. All Rights Reserved. * You can freely copy, use, modify this script, * if the credit is given in the source. * If you would like to get information for this script, * please access */ 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 (255 < i) 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 fade(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))); }} /* 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,0x00ff, 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() { fade(255,255,255, 0x00,0x00,0x00, 80);}function fadeout() { /*fade(0,0,0, 0,0,0, 100); */}/* do fadein */fadein();/***** end fade script *****/

Roger Zelazny


Amber Series

While primarily considered fantasy, Zelazny's Amber series incorporates elements of SF such as alternate worlds and parallel dimensions. The land of Amber exists on a plane of greater fundamental reality than Earth, and provides normal reality with its ontological base. Zelazny explores the internal workings of Amber's psychology, sociology, and linguistics. Amber is dominated by a loosly tied family of feuding siblings whose constant fighting shapes the fabric of the lesser realities.

Amber Bibliography

Books featuring Corwin

Nine Princes of Amber (1970)
The Guns of Avalon (1972)
Sign of the Unicorn (1975)
The Hand of Oberon (1976)
The Courts of Chaos (1978)
The Chronicles of Amber (1979) collected, 2 volumes.

A Rhapsody in Amber (1981)

Featuring Corwin's son Merlin

Trumps of Doom (1985)
Blood of Amber (1986)
Sign of Chaos (1987)
Knight of Shadows (1989)
Prince of Chaos (1991)

Other Zelazny Links

Roger Zelazny
Zelazny
References

Follow the dragon to return to the index.
This site created by Brett Eaton

Last updated May 27, 1997.