<!-- Engage cloaking device...// composIt script by spanky 2001function composIt(n,d,tld) {	var ext = ".com";	if (tld) { ext = "." + tld; }	if (d) { d = d + ext; } else { d = "burningman" + ext; }	var addr = "mailto:" + n + "@" + d;	location = addr;	return false;}// lateral nav script by spanky 2001var prev = "";var next = "";var me   = "";var pre  = "<A HREF='";var preText = "<FONT FACE='arial,helvetica,sans-serif' SIZE='1'>";var post = "?lateral'>";var postText = "</FONT>";var color = section_color + "/" + section_color;var leftArrow = "<IMG SRC='/sections/" + color + "_footer_arrow_left.gif' WIDTH=12 HEIGHT=7 BORDER=0>";var rightArrow = "<IMG SRC='/sections/" + color + "_footer_arrow_right.gif' WIDTH=12 HEIGHT=7 BORDER=0>";// Get self name from URLvar myPath = 		location.pathname;var myLastSlash = 	myPath.lastIndexOf('/');var myURLLength = 	myPath.length;if (myLastSlash == (myURLLength-1)) {	myPath = myPath + "index.html";} //alert (myPath);//alert (myLastSlash);//alert (myURLLength);var arrayLen = fileName.length;// alert (arrayLen);// Determine what's nextfor (count=0; count <= arrayLen; count++) {	if (myPath == fileName[count]) {		var place = count;		break;	} else {		var place = 0;	}}// alert (place);// alert (fileName[place]);// Check first and lastif (place == 0) {	var prevPage = fileName[place];	var prevText = "START";} else {	var prevPage = fileName[place-1];	var prevText = "back to " + friendlyName[place-1];}if (place == (arrayLen-2)) {	var nextPage = fileName[place];	var nextText = "DONE";} else {	var nextPage = fileName[place+1];	var nextText = "forward to " + friendlyName[place+1];;}// Build the linksprev = preText + pre + prevPage + post + prevText + "</A>" + postText;next = preText + pre + nextPage + post + nextText + "</A>" + postText;prevArrow = pre + prevPage + post + leftArrow + "</A>";nextArrow = pre + nextPage + post + rightArrow + "</A>";// -- disengage...