ypSlideOutMenu.Registry = []
ypSlideOutMenu.aniLen = 0
ypSlideOutMenu.hideDelay = 400
ypSlideOutMenu.minCPUResolution = 10
function ypSlideOutMenu(id, dir, left, top, width, height)
{
	this.ie  = document.all ? 1 : 0
	this.ns4 = document.layers ? 1 : 0
	this.dom = document.getElementById ? 1 : 0
	if (this.ie || this.ns4 || this.dom) {
		this.id		 = id
		this.dir	 = dir
		this.orientation = dir == "left" || dir == "right" ? "h" : "v"
		this.dirType	 = dir == "right" || dir == "down" ? "-" : "+"
		this.dim	 = this.orientation == "h" ? width : height
		this.hideTimer	 = false
		this.aniTimer	 = false
		this.open	 = false
		this.over	 = false
		this.startTime	 = 0
		this.gRef = "ypSlideOutMenu_"+id
		eval(this.gRef+"=this")
		ypSlideOutMenu.Registry[id] = this
		var d = document
		d.write('<style type="text/css">')
		d.write('#' + this.id + 'Container { visibility:hidden; ')
		d.write('left:' + left + 'px; ')
		d.write('top:' + top + 'px; ')
		d.write('overflow:hidden; }')
		d.write('#' + this.id + 'Container, #' + this.id + 'Content { position:absolute; ')
		d.write('width:' + width + 'px; ')
		d.write('height:' + height + 'px; ')
		d.write('clip:rect(0 ' + width + ' ' + height + ' 0); ')
		d.write('}')
		d.write('</style>')
		this.load()
	}
}
ypSlideOutMenu.prototype.load = function() {
	var d = document
	var lyrId1 = this.id + "Container"
	var lyrId2 = this.id + "Content"
	var obj1 = this.dom ? d.getElementById(lyrId1) : this.ie ? d.all[lyrId1] : d.layers[lyrId1]
	if (obj1) var obj2 = this.ns4 ? obj1.layers[lyrId2] : this.ie ? d.all[lyrId2] : d.getElementById(lyrId2)
	var temp

	if (!obj1 || !obj2) window.setTimeout(this.gRef + ".load()", 100)
	else {
		this.container	= obj1
		this.menu	= obj2
		this.style	= this.ns4 ? this.menu : this.menu.style
		this.homePos	= eval("0" + this.dirType + this.dim)
		this.outPos	= 0
		this.accelConst	= (this.outPos - this.homePos) / ypSlideOutMenu.aniLen / ypSlideOutMenu.aniLen 

		if (this.ns4) this.menu.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
		this.endSlide()
	}
}
ypSlideOutMenu.showMenu = function(id)
{
	var reg = ypSlideOutMenu.Registry
	var obj = ypSlideOutMenu.Registry[id]
	if (obj.container) {
		obj.over = true
		if (obj.hideTimer) { reg[id].hideTimer = window.clearTimeout(reg[id].hideTimer) }
		if (!obj.open && !obj.aniTimer) reg[id].startSlide(true)
	}
}
ypSlideOutMenu.hideMenu = function(id)
{
	var obj = ypSlideOutMenu.Registry[id]
	   if (obj.container) {
		   if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
		   obj.hideTimer = window.setTimeout("ypSlideOutMenu.hide('" + id + "')", ypSlideOutMenu.hideDelay);
	   }
}
ypSlideOutMenu.hide = function(id)
{
	var obj = ypSlideOutMenu.Registry[id]
	obj.over = false
	if (obj.hideTimer) window.clearTimeout(obj.hideTimer)
	obj.hideTimer = 0
	if (obj.open && !obj.aniTimer) obj.startSlide(false)
}
ypSlideOutMenu.prototype.startSlide = function(open) {
	this[open ? "onactivate" : "ondeactivate"]()
	this.open = open
	if (open) this.setVisibility(true)
	this.startTime = (new Date()).getTime()	
	this.aniTimer = window.setInterval(this.gRef + ".slide()", ypSlideOutMenu.minCPUResolution)
}
ypSlideOutMenu.prototype.slide = function() {
	var elapsed = (new Date()).getTime() - this.startTime
	if (elapsed > ypSlideOutMenu.aniLen) this.endSlide()
	else {
		var d = Math.round(Math.pow(ypSlideOutMenu.aniLen-elapsed, 2) * this.accelConst)
		if (this.open && this.dirType == "-")		d = -d
		else if (this.open && this.dirType == "+")	d = -d
		else if (!this.open && this.dirType == "-")	d = -this.dim + d
		else						d = this.dim + d
		this.moveTo(d)
	}
}
ypSlideOutMenu.prototype.endSlide = function() {
	this.aniTimer = window.clearTimeout(this.aniTimer)
	this.moveTo(this.open ? this.outPos : this.homePos)
	if (!this.open) this.setVisibility(false)
	if ((this.open && !this.over) || (!this.open && this.over)) {
		this.startSlide(this.over)
	}
}
ypSlideOutMenu.prototype.setVisibility = function(bShow) { 
	var s = this.ns4 ? this.container : this.container.style
	s.visibility = bShow ? "visible" : "hidden"
}
ypSlideOutMenu.prototype.moveTo = function(p) { 
	this.style[this.orientation == "h" ? "left" : "top"] = this.ns4 ? p : (p) + "px"
}
ypSlideOutMenu.prototype.getPos = function(c) {
	return parseInt(this.style[c])
}
ypSlideOutMenu.prototype.onactivate	= function() { }
ypSlideOutMenu.prototype.ondeactivate	= function() { }
	<!--
	var smy = 29;
	var smw = 190;
	var smh = 340;
	//new ypSlideOutMenu("MMID", "slide direction", left, top, width, height)
	new ypSlideOutMenu("MMIDAbout", "down", 71, smy, smw, smh)
	new ypSlideOutMenu("MMIDEditorials", "right", 261, 44, smw, smh)
	new ypSlideOutMenu("MMIDContact", "down", 133, smy, smw, smh)
	new ypSlideOutMenu("MMIDCommunities", "down", 385, smy, smw, smh)
	new ypSlideOutMenu("MMIDLinks", "down", 643, smy, smw, smh)
function findObj(n, d) { 
	var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
	d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
	if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
	for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
	if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function showHideLayers() {
	var i,p,v,obj,args=showHideLayers.arguments;
	for (i=0; i<(args.length-2); i+=3) if ((obj=findObj(args[i]))!=null) { v=args[i+2];
	if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }
	obj.visibility=v; }
}
//-->


function MainMenu(VoxPageLevel)
{
var myDiv = document.getElementById('MainMenuMasterContainer');
var PathPrefix='';
switch (VoxPageLevel)
{
case 'Home':
	PathPrefix='';
	break;
case 'Subpage':
	PathPrefix='../';
	break;
case 'Subsubpage':
	PathPrefix='../../';
	break;
default : alert('No such VoxPageLevel.');
}

document.write('<div id="MMMasterContainer">' +
'<p class="MMTopLinks">' +
'<a href="http://www.voxignis.com"><img id="MMHomeButton" src="'+PathPrefix+'images/invisible.gif"></a>' +
'<a href="Javascript:;" onmouseover="ypSlideOutMenu.showMenu(\'MMIDAbout\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDAbout\')">About</a>' +
'<a href="Javascript:;" onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')">Contact</a>' +
'<a href="'+PathPrefix+'regionalburnshowcase">Regional Burn Showcase</a>' +
'<a href="Javascript:;" onmouseover="ypSlideOutMenu.showMenu(\'MMIDCommunities\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDCommunities\')">Communities</a>' +
'<a href="'+PathPrefix+'burnerpubliclibrary">Burner Public Library</a>' +
'<a href="Javascript:;" onmouseover="ypSlideOutMenu.showMenu(\'MMIDLinks\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDLinks\')">Links</a>' +
'<a href="'+PathPrefix+'burnernews">Burners In The News</a>' +
'<a href="'+PathPrefix+'search">Search</a>' +
'</p></div>');

document.write('<div id="MMIDAboutContainer">' +
'<div id="MMIDAboutContent">' +
'<table class="MMDropDown" cellspacing="0" cellpadding="0" border="0">' +
'<tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDAbout\'); ypSlideOutMenu.hideMenu(\'MMIDEditorials\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDAbout\')"><a class="MMRollMenu" href="'+PathPrefix+'faq"><span class="MMItemIndent">FAQ</a></span></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDAbout\'); ypSlideOutMenu.showMenu(\'MMIDEditorials\')"><a class="MMRollMenu" href="javascript:;"><span class="MMItemIndent MMRightBullet">Editorials</a></span></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDAbout\'); ypSlideOutMenu.hideMenu(\'MMIDEditorials\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDAbout\')"><a class="MMRollMenu" href="'+PathPrefix+'goals"><span class="MMItemIndent">Goals</a></span></td>' +
'</tr></table>' +
'<img class="MMDropDownDeco1" src="'+PathPrefix+'images/invisible.gif">' +
'</div></div>');

document.write('<div id="MMIDLinksContainer">' +
'<div id="MMIDLinksContent">' +
'<table class="MMDropDown" cellspacing="0" cellpadding="0" border="0">' +
'<tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDLinks\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDLinks\')"><a class="MMRollMenu" href="'+PathPrefix+'links/burneraudio.html"><span class="MMItemIndent">Mystic Orb Of Burner Audio Links</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDLinks\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDLinks\')"><a class="MMRollMenu" href="'+PathPrefix+'links/fireperformanceequipment.html"><span class="MMItemIndent">Mystic Orb Of Fire Performance Equipment Links</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDLinks\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDLinks\')"><a class="MMRollMenu" href="'+PathPrefix+'linktovoxignis"><span class="MMItemIndent">Link To Vox Ignis</span></a></td>' +
'</tr></table>' +
'<img class="MMDropDownDeco1" src="'+PathPrefix+'images/invisible.gif">' +
'</div></div>');

document.write('<div id="MMIDContactContainer">' +
'<div id="MMIDContactContent">' +
'<table class="MMDropDown" cellspacing="0" cellpadding="0">' +
'<tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'contact/feedback.html"><span class="MMItemIndent">Send A Message To Vox Ignis</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'contact/contributealink.html"><span class="MMItemIndent">Contribute A Link</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'contact/reportabrokenlink.html"><span class="MMItemIndent">Report A Broken Link</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'contact/messagethebpl.html"><span class="MMItemIndent">Send A Message To The Burner Public Library</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'contact/submitregionalburnlink.html"><span class="MMItemIndent">Submit A Regional Burn Website For Listing</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'photography/contributephotography.step1.html"><span class="MMItemIndent">Contribute Your Burn Photography</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDContact\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDContact\')"><a class="MMRollMenu" href="'+PathPrefix+'burnerpubliclibrary/donatelibrarymaterials.step1.html"><span class="MMItemIndent">Donate Materials To The Burner Public Library</span></a></td>' +
'</tr></table>' +
'<img class="MMDropDownDeco1" src="'+PathPrefix+'images/invisible.gif">' +
'</div></div>');

document.write('<div id="MMIDCommunitiesContainer">' +
'<div id="MMIDCommunitiesContent">' +
'<table class="MMDropDown" cellspacing="0" cellpadding="0" border="0">' +
'<tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDCommunities\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDCommunities\')"><a class="MMRollMenu" href="'+PathPrefix+'burnercommunities"><span class="MMItemIndent">Burner Communities Around The World</span></a></td>' +
'</tr></table>' +
'<img class="MMDropDownDeco1" src="'+PathPrefix+'images/invisible.gif">' +
'</div></div>');

document.write('<div id="MMIDEditorialsContainer" style="position: absolute; z-index: 10;">' +
'<div id="MMIDEditorialsContent">' +
'<img class="MMDropDownDeco2" src="'+PathPrefix+'images/invisible.gif">' +
'<table class="MMDropDown" cellspacing="0" cellpadding="0" border="0">' +
'<tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDEditorials\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDEditorials\'); ypSlideOutMenu.hideMenu(\'MMIDAbout\')"><a class="MMRollMenu" href="'+PathPrefix+'editorials/editorial.voxignis.06.08.html"><span class="MMItemIndent">Editorials &ldquo;The Digital Sands Of Time&rdquo;<br>&mdash; June 2008</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDEditorials\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDEditorials\'); ypSlideOutMenu.hideMenu(\'MMIDAbout\')"><a class="MMRollMenu" href="'+PathPrefix+'editorials/editorial.voxignis.10.06.html"><span class="MMItemIndent">&ldquo;News, Blogs, Welders, And The Semantic Web&rdquo;<br>&mdash; October 2006</span></a></td>' +
'</tr><tr>' +
'	<td onmouseover="ypSlideOutMenu.showMenu(\'MMIDEditorials\')" onmouseout="ypSlideOutMenu.hideMenu(\'MMIDEditorials\'); ypSlideOutMenu.hideMenu(\'MMIDAbout\')"><a class="MMRollMenu" href="'+PathPrefix+'editorials/editorial.voxignis.06.06.html"><span class="MMItemIndent">&ldquo;Building Community Consciousness&rdquo;<br>&mdash; June 2006</span></a></td>' +
'</tr></table>' +
'<img class="MMDropDownDeco3" src="'+PathPrefix+'images/invisible.gif">' +
'</div></div>');
}


function LeftBarInsertRandomBlock()
{
var backgroundcssid = [
'LeftBarEuropeanGroupsContainer',
'LeftBarWikiBurnEventListContainer',
'LeftBarWebRingContainer',
'LeftBarDonatePhotoContainer',
'LeftBarScholorlyLinksContainer',
'LeftBarAntarcticaContainer',
'LeftBarBurningSeedContainer',
'LeftBarTentsContainer',
'LeftBarGlowBlinkyContainer'];
var title = [
'European Burner<br>Communities',
'Collaborative Burner<br>Events List',
'Explore A WebRing',
'Vox Ignis Needs<br>Fantastic Photography',
'Just Burn<br>The References',
'Freezing Man in<br>Antarctica',
'Burning Seed:<br>Australian Regional Burn',
'Outdoor Living<br>- Tents',
'Burner Fashion<br>- Glow &amp; Blinky'];
var content = [
'<p class="LeftBar">The Burner ethos is alive and burning well in Europe.</p><p class="LeftBarBulletedLink"><a href="http://euroburners.org">EuroBurners</a></p><p class="LeftBarBulletedLink"><a href="http://www.irishburners.org">Irish Burners</a></p><p class="LeftBarBulletedLink"><a href="http://www.frenchburners.org">French Burners</a></p><p class="LeftBarBulletedLink"><a href="http://www.wuestengefluester.de">German Burners</a></p><p class="LeftBarBulletedLink"><a href="http://www.freewebs.com/swissburners">Swiss Burners</a></p><p class="LeftBarBulletedLink"><a href="http://lists.euroburners.net/mailman/listinfo/italianburners">Italian Burners</a></p><p class="LeftBar">These groups and many others come together each year to create <a href="http://www.goingnowhere.org">Nowhere</a>, the European Regional Burn in Los Monegros, Spain.</p><p class="LeftBar">If you know the web address of another European Burner group, please <a href="http://www.voxignis.com/contact/feedback.html">tell Vox Ignis about it</a>.</p>',
'<p class="LeftBar">A <a href="http://en.wikipedia.org/wiki/List_of_regional_Burning_Man_events">publicly maintained general list</a> of Burn events, Regional Burns, Compressions, Decompressions, and Burning Man inspired art festivals can be found on <a href="http://www.wikipedia.org">Wikipedia</a>.</p>',
'<p class="LeftBar"><i>The Burning Man Official WebRing</i> is a set of Burner websites, all linked together with a common navigation bar.  Visit any of these websites and you\'ll find a navbar that allows you to jump one website forward or backward in the ring.</p><p class="LeftBar">The best place to start adventuring is the <a href="http://www.webring.com/t/Burning-Man-Official-WebRing">WebRing Hub</a>.</p>',
'<p class="LeftBar">If you are the original photographer and owner of a digital, night-time Regional Burn snapshot, please <a href="http://www.voxignis.com/photography/contributephotography.step1.html">contribute a photo</a> to Vox Ignis.  You will be credited by name whenever your photo appears in a Vox Ignis page header.  Celebrity and fame will most certainly follow.</p>',
'<p class="LeftBar">The Burning Man Festival and the culture it inspires are often the subjects of serious scholarly research.  Citations in scientific journals, patents, legal opinions, court cases, and grant proposals are also common.</p><p class="LeftBar"><a href="http://scholar.google.com/scholar?hl=en&q=%22Burning+Man%22&as_sdt=2000&as_ylo=&as_vis=0">Check out these search results</a> using <a href="http://scholar.google.com">Google Scholar</a> to do the heavy lifting.</p>',
'<p class="LeftBar">The world\'s most southern continent is now home to the world\'s most southern Burn event: <b>Freezing Man</b> at McMurdo Station, <a href="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Ross+Island,+Antarctica&sll=12.21118,101.953125&sspn=107.780383,228.339844&ie=UTF8&hq=&hnear=Ross+Island,+Antarctica&ll=-71.074056,144.84375&spn=172.652125,193.359375&z=1">Ross Island</a>, Antarctica.  The 2010 effigy was a life-size bamboo man frozen in 1,800 pounds of ice.</p><p class="LeftBarBulletedLink"><a href="http://www.travelpod.com/travel-blog-entries/sullywan13/4/1263670758/tpod.html">Sullywan13\'s blog and photos</a></p><p class="LeftBarBulletedLink"><a href="http://mitchell-antarctica.blogspot.com">Mitchell\'s blog</a></p>',
'<p class="LeftBar">2010 marked the first official Regional Burn in Australia, <b>Burning Seed</b>, held on the mid-north coast of New South Wales. Final stats: 1/1000th of the size of Black Rock City, over thirteen burns, zero incidents, zero trace.</p><p class="LeftBarBulletedLink"><a href="http://www.burningmanaustralia.com">Event website</a></p><p class="LeftBarBulletedLink"><a href="http://www.inthemix.com.au/news/aust/46792/Can_Burning_Man_triumph_in_Australia_">Article and videos</a></p><p class="LeftBarBulletedLink"><a href="http://www.mindfood.com/at-burning-man-festival-hits-australia.seo">Article</a></p><p class="LeftBarBulletedLink"><a href="http://www.youtube.com/watch?v=jT4-tZp_sL0">Video slideshow (2010)</a></p><p class="LeftBarBulletedLink"><a href="http://www.youtube.com/watch?v=km6prrpXIkE">Video (2010)</a></p><p class="LeftBarBulletedLink"><a href="http://www.voxignis.com/regionalburnshowcase">Regional Burn Showcase</a></p><p class="LeftBarBulletedLink"><a href="http://www.facebook.com/pages/Burning-Man-Australia/20171688016">Burning Man Australia on Facebook</a></p>',
'<p class="LeftBar">Many Burner events are held outdoors. Unless you own an RV or a personal geodome, you might need a tent (or two, or three).</p><p class="LeftBarBulletedLink"><a href="http://www.cabelas.com/catalog/browse/camping-tents-view-all-tents/_/N-1102375/Ns-CATEGORY_SEQ_105517980">Cabela\'s</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.coleman.com/coleman/ColemanCom/category_main.asp?CategoryID=11000">Coleman</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.eurekatent.com">Eureka</a>  (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.tentcot.com">Kamp-Rite</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.kelty.com/c-4-tents.aspx">Kelty</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.khyam.co.uk">Khyam</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.lichfield-outdoor.co.uk">Lichfield</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://marmot.com/catalog/tents/fall-2010/118-72">Marmot</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.msrcorp.com/tents">MSR</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.nizamcanvas.com/tent.htm">Nizam</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.thenorthface.com/na/gear-shop-category-6.html">North Face</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.outwell.dk">Outwell</a> (DE/SE/UK)</p><p class="LeftBarBulletedLink"><a href="http://www.raclet.fr">Raclet</a> (FR)</p><p class="LeftBarBulletedLink"><a href="http://www.robens.co.uk">Robens</a> (DE/UK)</p><p class="LeftBarBulletedLink"><a href="http://www.sierradesigns.com/c-20-tents.aspx">Sierra Designs</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.tents-tents-now.com/tents.htm">Tents Store</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.terra-nova.co.uk/Product_Type/Tents">Terra Nova</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.vaude.com/tents/tents.cfm?catagory=tents">Vaude</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.walmart.com/browse/Camping-Tents-Accessories/_/N-8vvl?catNavId=4128&catNavId=4128&ic=48_0&povid=cat4128-env230450-module387120-rLink1&ref=%20414561">Walmart</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.wenzelco.com/tents.aspx">Wenzel</a> (US)</p>',
'<p class="LeftBar">Your closet of Burner fashion statements isn\'t complete without the latest glow and blinky trinkets.</p><p class="LeftBar">Partying au naturale? No problem. Glow is also great for gifting.</p><p class="LeftBarBulletedLink"><a href="http://www.biglix.co.uk">Biglix</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.clubbertoys.com">ClubberToys</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.coolight.com">CooLight</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.elwire.com">elwire.com</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.enlighted.com">Enlighted Designs</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.extremeglow.com">Extreme Glow</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.theglowcompany.co.uk">Glow Co., The</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.glowsticks.co.uk">Glowsticks</a> (UK)</p><p class="LeftBarBulletedLink"><a href="http://www.lightgod.com">LightGod</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.liquidlight4glow.com">Liquid Light</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.glo-net.com/glow">Pete\'s Luminous Creations</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.spencersonline.com">Spencer Gifts</a> (US)</p><p class="LeftBarBulletedLink"><a href="http://www.superbrightleds.com">superbrightleds</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.windycitynovelties.com">Windy City Novelties</a> (Intl.)</p><p class="LeftBarBulletedLink"><a href="http://www.xenoline.com">Xenoline</a> (Intl.)</p>'];
var x=Math.floor(Math.random()*(content.length));
document.getElementById('RandomBlock').innerHTML = '<p class="LeftBarBlockTitle">'+title[x]+'</p>' +
'<div class="LeftBarBlockContent" id="'+backgroundcssid[x]+'">'+content[x]+'</div>';
}


function hasClass(obj)
{
	var result = false;
	if (obj.getAttributeNode("class") !== null) {
	result = obj.getAttributeNode("class").value;
	}
	return result;
}


function stripe(id)
{
var even = false;
var evenColor = arguments[1] ? arguments[1] : "#fff";
var oddColor = arguments[2] ? arguments[2] : "#eee";
var table = document.getElementById(id);

if (! table) { return; }
	var tbodies = table.getElementsByTagName("tbody");
	for (var h = 0; h < tbodies.length; h++) {
	var trs = tbodies[h].getElementsByTagName("tr");
	for (var i = 0; i < trs.length; i++) {
if (!hasClass(trs[i]) && ! trs[i].style.backgroundColor) {
	var tds = trs[i].getElementsByTagName("td");
	for (var j = 0; j < tds.length; j++) {
	var mytd = tds[j];
if (! hasClass(mytd) && ! mytd.style.backgroundColor) {
	mytd.style.backgroundColor = even ? evenColor : oddColor;
}
}
}
even =  ! even;
}
}
}


function CenterRBSCarousel()
{
	document.getElementById('RBSCarouselContainer').scrollLeft = 776;
}


function number_format(num)
{
	num = num.toString().replace(/\$|\,/g,'');
	if(isNaN(num)) {
		num = "0";
		}
	sign = (num == (num = Math.abs(num)));
	num = Math.floor(num*100+0.50000000001);
	num = Math.floor(num/100).toString();
	for (var i = 0; i < Math.floor((num.length-(1+i))/3); i++) {
	num = num.substring(0,num.length-(4*i+3))+','+
	num.substring(num.length-(4*i+3));
	}
	return (((sign)?'':'-') + num);
}


function renderMessage(dateStr, msg1, msg2, countFrom)
{
	var date = new Date(dateStr);
	var now = new Date();
	var diff = date.getTime() - now.getTime();
	var days = Math.floor(diff / (1000 * 60 * 60 * 24)) + 1;
	if(days < 1) {
		document.write('0 days');
	}
	else
	{
		if(countFrom) {
		days = countFrom - days;
		}
	document.write(msg2.replace(/%days%/g, number_format(days)));
	}
}


function RBSMapButtonsControl(RBSButtonID)
{
var i=0;
for (i=100;i<=125;i++)
	{
	document.getElementById(i).setAttribute('class','RBSToolButton');
	}
document.getElementById(RBSButtonID).setAttribute('class','RBSToolButtonCurrent');
}


function SwitchRBSPhotoWallBoxContent(RBName,RBSButtonID)
{
var i=0;
for (i=200;i<=225;i++)
	{
	document.getElementById(i).setAttribute('class','RBSToolButton');
	}
var myDiv = document.getElementById('RBSPhotoWallBox');
switch (RBName)
{
case 'AfrikaBurn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">AfrikaBurn photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DAfrikaBurn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DAfrikaBurn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Alchemy':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Alchemy photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dalchemy%20regional%20burn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dalchemy%20regional%20burn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Apogaea':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Apogaea photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DApogaea&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DApogaea&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Burning Flipside':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Burning Flipside photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Burning%20Flipside%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Burning%20Flipside%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Critical Massive':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Critical Massive photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Critical%20Massive%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Critical%20Massive%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Element 11':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Element 11 photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Element%2011%22%20regional&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Element%2011%22%20regional&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Euphoria':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Euphoria photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Deuphoria%20burn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Deuphoria%20burn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Firefly':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Firefly photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dfirefly%20vermont&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dfirefly%20vermont&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Freezer Burn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Freezer Burn photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D92629163%40N00%26album%3D72157620775917640&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D92629163%40N00%26album%3D72157620775917640&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Frostburn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Frostburn photos streamed from Picasa</p><object id="ci_82798_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3DFrostburn%202009&amp;showsearch=false&amp;showembed=false&amp;intro=zoomIn&amp;showReflections=false&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;glowcolor=%23FFFFFF&amp;numrows=4"><param name="wmode" value="opaque"><embed id="ci_82798_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3DFrostburn%202009&amp;showsearch=false&amp;showembed=false&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;amp;intro=zoomIn&amp;glowcolor=%23FFFFFF&amp;numrows=4" wmode="opaque"></embed></object>';
	break;
case 'Gateway':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Gateway photos streamed from Flickr</p><object id="ci_60690_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D7254471%40N02%26tags%3Dgateway&backgroundcolor=%23FFFFFF&style=light&glowcolor=%23000000&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_60690_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D7254471%40N02%26tags%3Dgateway&backgroundcolor=%23FFFFFF&style=light&glowcolor=%23000000&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Holos':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Holos photos not found</p><p class="Center BackTrans">Photos from Holos, the Alaska Regional Burn,<br><b>could not be found</b><br>on the major photo hosting services.<br><br>Try the<br><a href="http://holosfestival.com/?page_id=134">photo gallery on the Holos website</a>.</p>';
	break;
case 'InterFuse':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">InterFuse photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DInterFuse&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DInterFuse&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Kiwiburn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Kiwiburn photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DKiwiburn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DKiwiburn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Lakes Of Fire':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Lakes Of Fire photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3D%22Lakes%20Of%20Fire%22%20regional%20burn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3D%22Lakes%20Of%20Fire%22%20regional%20burn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'mOOseman':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">mOOseman photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D49503159256%40N01%26tags%3Dmooseman&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fuser%3D49503159256%40N01%26tags%3Dmooseman&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Myschievia':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Myschievia photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DMyschievia&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3DMyschievia&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Nowhere':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Nowhere photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dnowhere%20zaragoza&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dnowhere%20zaragoza&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Playa del Fuego':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Playa del Fuego photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Playa%20del%20Fuego%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Playa%20del%20Fuego%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'PreHeat':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">PreHeat photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22PreHeat%202008%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22PreHeat%202008%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Reclaimation':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Reclaimation photos not found</p><p class="Center BackTrans">Photos from Reclaimation, the Regional Burn in Kentucky,<br><b>could not be found</b><br>on the major photo hosting services.</p>';
	break;
case 'Saguaro Man':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Saguaro Man photos not found</p><p class="Center BackTrans">Photos from Saguaro Man, the Arizona Regional Burn,<br><b>could not be found</b><br>on the major photo hosting services.</p>';
	break;
case 'Scorched Nuts':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Scorched Nuts photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Scorched%20Nuts%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Scorched%20Nuts%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Soak':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Soak photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dsoak%20regional%20burn&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dsoak%20regional%20burn&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Transformus':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Transformus photos streamed from Flickr</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dtransformus&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fwww.flickr.com%2F%3Fsearch%3Dtransformus&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
case 'Burning Seed':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Burning Seed photos streamed from Picasa</p><object id="ci_28494_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Burning%20Seed%22&numrows=4&backgroundcolor=0xFFFFFF&style=white&showsearch=false&showembed=false&showchrome=false"><param name="wmode" value="opaque"><param name="src" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="bgcolor" value="#FFFFFF"><param name="allowFullScreen" value="true"><embed id="ci_28494_e" type="application/x-shockwave-flash" width="548" height="541" src="http://apps.cooliris.com/embed/cooliris.swf" wmode="opaque" flashvars="feed=api%3A%2F%2Fpicasaweb.google.com%2F%3Fsearch%3D%22Burning%20Seed%22&amp;numrows=4&amp;showReflections=false&amp;intro=zoomIn&amp;backgroundcolor=0xFFFFFF&amp;style=white&amp;showsearch=false&amp;showembed=false&amp;showchrome=true" bgColor="#FFFFFF" allowScriptAccess="always" allowFullScreen="true"></embed></object>';
	break;
default : alert('No such RBName.');
}
document.getElementById(RBSButtonID).setAttribute('class','RBSToolButtonCurrent');
}


function SwitchRBSVideoWallBoxContent(RBName,RBSButtonID)
{
var i=0;
for (i=300;i<=325;i++)
	{
	document.getElementById(i).setAttribute('class','RBSToolButton');
	}
var myDiv = document.getElementById('RBSVideoWallBox');
switch (RBName)
{
case 'AfrikaBurn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">AfrikaBurn videos streamed from YouTube</p><object id="ci_06654_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DAfrikaBurn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_06654_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DAfrikaBurn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Alchemy':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Alchemy videos streamed from YouTube</p><object id="ci_80824_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DAlchemy%20Georgia%20festival%20-pips%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_80824_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DAlchemy%20Georgia%20festival%20-pips%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Apogaea':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Apogaea videos streamed from YouTube</p><object id="ci_89246_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dapogaea%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_89246_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dapogaea%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Burning Flipside':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Burning Flipside videos streamed from YouTube</p><object id="ci_89516_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Burning%20Flipside%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_89516_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Burning%20Flipside%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Burning Seed':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Burning Seed videos streamed from YouTube</p><object id="ci_36514_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Burning%20Seed%22%20Australia%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=light&glowcolor=%23000000&showembed=false"><param name="wmode" value="opaque"><embed id="ci_36514_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Burning%20Seed%22%20Australia%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=light&glowcolor=%23000000&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Critical Massive':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Critical Massive videos streamed from YouTube</p><object id="ci_51095_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Critical%20Massive%22%20-winter%20-Crew%20-Fallout%20-Obama%20-hero%20-helix%20-Battle%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_51095_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Critical%20Massive%22%20-winter%20-Crew%20-Fallout%20-Obama%20-hero%20-helix%20-Battle%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Element 11':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Element 11 videos streamed from YouTube</p><object id="ci_09005_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Element%2011%22%20-Wonderwall%20-balans%20-Photoshop%20-challenge%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_09005_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Element%2011%22%20-Wonderwall%20-balans%20-Photoshop%20-challenge%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Euphoria':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Euphoria videos not found</p><p class="Center BackTrans">Videos from Euphoria, the Regional Burn in Georgia,<br><b>could not be found</b><br>on YouTube.</p>';
	break;
case 'Firefly':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Firefly videos streamed from YouTube</p><object id="ci_91949_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DFirefly%20vermont%20-fisher%20-baken%20-steve%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_91949_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DFirefly%20vermont%20-fisher%20-baken%20-steve%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Freezer Burn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Freezer Burn videos not found</p><p class="Center BackTrans">Videos from Freezer Burn, the Alberta Regional Burn,<br><b>could not be found</b><br>on YouTube.</p>';
	break;
case 'Frostburn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Frostburn videos streamed from YouTube</p><object id="ci_93060_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DFrostburn%20(2009%20OR%202008%20OR%202010)%20-guilt%20-Lyrics%20-Finland%20-treat%20-mario%20-spore%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_93060_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DFrostburn%20(2009%20OR%202008%20OR%202010)%20-guilt%20-Lyrics%20-Finland%20-treat%20-mario%20-spore%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Gateway':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Gateway videos not found</p><p class="Center BackTrans">Videos from Gateway, the Regional Burn in Missouri,<br><b>could not be found</b><br>on YouTube.</p>';
	break;
case 'Holos':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Holos videos streamed from YouTube</p><object id="ci_12142_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DHolos%20Alaska%20-Yugioh%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_12142_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DHolos%20Alaska%20-Yugioh%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'InterFuse':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">InterFuse videos streamed from YouTube</p><object id="ci_39543_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DInterfuse%20fire%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_39543_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DInterfuse%20fire%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Kiwiburn':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Kiwiburn videos streamed from YouTube</p><object id="ci_08662_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DKiwiburn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_08662_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DKiwiburn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Lakes Of Fire':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Lakes Of Fire videos streamed from YouTube</p><object id="ci_41420_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22lakes%20of%20fire%22%20-trickster%20-agent%20-eternal%20-Hell%20-lecture%20-Finesse%20-testament%20-Brooklyn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_41420_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22lakes%20of%20fire%22%20-trickster%20-agent%20-eternal%20-Hell%20-lecture%20-Finesse%20-testament%20-Brooklyn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'mOOseman':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">mOOseman videos streamed from YouTube</p><object id="ci_72437_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DmOOseman%20burn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_72437_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DmOOseman%20burn%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Myschievia':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Myschievia videos streamed from YouTube</p><object id="ci_23616_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dmyschievia%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_23616_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dmyschievia%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Nowhere':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Nowhere videos streamed from YouTube</p><object id="ci_20650_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DNowhere%20spain%202005%20-latin%20-rage%20-light%20-line%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_20650_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DNowhere%20spain%202005%20-latin%20-rage%20-light%20-line%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Playa del Fuego':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Playa del Fuego videos streamed from YouTube</p><object id="ci_91994_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Playa%20del%20Fuego%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_91994_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Playa%20del%20Fuego%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'PreHeat':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">PreHeat videos streamed from YouTube</p><object id="ci_15523_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DPreHeat%20florida%20-food%20-cooking%20-vegan%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false"><param name="wmode" value="opaque"><embed id="ci_15523_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DPreHeat%20florida%20-food%20-cooking%20-vegan%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showchrome=true&showembed=false" wmode="opaque"></embed></object>';
	break;
case 'Reclaimation':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Reclaimation videos not found</p><p class="Center BackTrans">Videos from Reclaimation, the Regional Burn in Kentucky,<br><b>could not be found</b><br>on YouTube.</p>';
	break;
case 'Saguaro Man':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Saguaro Man videos not found</p><p class="Center BackTrans">Videos from Saguaro Man, the Arizona Regional Burn,<br><b>could not be found</b><br>on YouTube.</p>';
	break;
case 'Scorched Nuts':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Scorched Nuts videos streamed from YouTube</p><object id="ci_45618_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Scorched%20Nuts%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_45618_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3D%22Scorched%20Nuts%22%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Soak':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Soak videos streamed from YouTube</p><object id="ci_49012_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dsoak%20burningman%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_49012_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3Dsoak%20burningman%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
case 'Transformus':
	myDiv.innerHTML = '<p class="RBSToolPanelHeader">Transformus videos streamed from YouTube</p><object id="ci_43137_o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="548" height="541"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><param name="bgColor" value="#FFFFFF"><param name="flashvars" value="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DTransformus%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true"><param name="wmode" value="opaque"><embed id="ci_43137_e" type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="548" height="541" allowFullScreen="true" allowScriptAccess="always" bgColor="#FFFFFF" flashvars="feed=api%3A%2F%2Fwww.youtube.com%2F%3Fsearch%3DTransformus%26time%3Dall_time%26sort%3Dpublished&backgroundcolor=%23FFFFFF&style=white&glowcolor=%23FFFFFF&showembed=false&showchrome=true" wmode="opaque"></embed></object>';
	break;
default : alert('No such RBName.');
}
document.getElementById(RBSButtonID).setAttribute('class','RBSToolButtonCurrent');
}


function SwitchRBSTweetWallBoxContent(RBName,RBSButtonID)
{
var i=0;
for (i=400;i<=425;i++)
	{
	document.getElementById(i).setAttribute('class','RBSToolButton');
	}
var myDiv = document.getElementById('RBSTweetWallBox');
switch (RBName)
{
case 'AfrikaBurn':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"AfrikaBurn\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="AfrikaBurn"></div></div>';
	break;
case 'Alchemy':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Alchemy\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Alchemy"></div></div>';
	break;
case 'Apogaea':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Apogaea\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Apogaea"></div></div>';
	break;
case 'Burning Flipside':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Burning Flipside\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Burning Flipside"\'></div></div>';
	break;
case 'Burning Seed':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Burning Seed\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Burning Seed"\'></div></div>';
	break;
case 'Critical Massive':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Critical Massive\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Critical Massive"\'></div></div>';
	break;
case 'Element 11':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Element 11\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Element 11"\'></div></div>';
	break;
case 'Euphoria':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Euphoria\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Euphoria"\'></div></div>';
	break;
case 'Firefly':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Firefly\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Firefly"></div></div>';
	break;
case 'Freezer Burn':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Freezer Burn\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Freezer Burn"\'></div></div>';
	break;
case 'Frostburn':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Frostburn\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Frostburn"></div></div>';
	break;
case 'Gateway':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Gateway\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Gateway"></div></div>';
	break;
case 'Holos':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Holos\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Holos"></div></div>';
	break;
case 'InterFuse':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"InterFuse\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="InterFuse"></div></div>';
	break;
case 'Kiwiburn':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Kiwiburn\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Kiwiburn"></div></div>';
	break;
case 'Lakes Of Fire':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Lakes Of Fire\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Lakes Of Fire"\'></div></div>';
	break;
case 'mOOseman':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"mOOseman\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="mOOseman"></div></div>';
	break;
case 'Myschievia':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Myschievia\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Myschievia"></div></div>';
	break;
case 'Nowhere':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Official Twitter Hashtag: #NowhereNowHere</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="NowhereNowHere"></div></div>';
	break;
case 'Playa del Fuego':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Playa del Fuego\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Playa del Fuego"\'></div></div>';
	break;
case 'PreHeat':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"PreHeat\"</p></div><div class="RBSTweetScrollContainer"><p class="Center BackTrans">PreHeat, the Florida Regional Burn,<br>has its own tweet channel on Twitter.com</p><p class="Center BackTrans"><a href="http://twitter.com/#!/Burnt_Oranges">Check It Out</a></p></div>';
	break;
case 'Reclaimation':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Reclaimation\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Reclaimation"></div></div>';
	break;
case 'Saguaro Man':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Saguaro Man\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Saguaro Man"\'></div></div>';
	break;
case 'Scorched Nuts':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Scorched Nuts\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title=\'"Scorched Nuts"\'></div></div>';
	break;
case 'Soak':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Soak\"</p></div><div class="RBSTweetScrollContainer"><p class="Center BackTrans">Soak, the Regional Burn in Oregon,<br>has its own tweet channel on Twitter.com</p><p class="Center BackTrans"><a href="http://twitter.com/#!/BurningManPdx">Check It Out</a></p></div>';
	break;
case 'Transformus':
	myDiv.innerHTML = '<div id="RBSToolPanelHeaderContainer"><p class="RBSToolPanelHeader">Recent Tweets Containing \"Transformus\"</p></div><div class="RBSTweetScrollContainer"><div class="Monitter" id="Tweets" title="Transformus"></div></div>';
	break;
default : alert('No such RBName.');
}
document.getElementById(RBSButtonID).setAttribute('class','RBSToolButtonCurrent');
var NewScript=document.createElement('script');
NewScript.src="monitter.min.js";
document.body.appendChild(NewScript);
}


function Footer(VoxPageLevel)
{
var myDiv = document.getElementById('FooterContainer');
var PathPrefix='';
switch (VoxPageLevel)
{
case 'Home':
	PathPrefix='';
	break;
case 'Subpage':
	PathPrefix='../';
	break;
case 'Subsubpage':
	PathPrefix='../../';
	break;
default : alert('No such VoxPageLevel.');
}
myDiv.innerHTML = '<div id="FooterCrystalballBackground">' +
'	<div class="FooterUserMapColumn">' +
'	<p class="FooterColumnUserMapTitle">Locations Of<br>Vox Ignis Visitors<br>Within The Past 30 Days</p>' +
'	<img id="FooterColumnUserMapTitleBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'		<div id="FooterUserMap">&nbsp;</div>' +
'	</div>' +
'	<div class="FooterColumn">' +
'		<p class="FooterColumnTitle">This Website Is Designed To Be Experienced With</p>' +
'		<img class="FooterColumnTitleBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'		<p class="FooterColumnText">Firefox (3+)<br><a class="FooterBulletedDownloadLink" href="http://www.mozilla.com/en-US/firefox/upgrade.html">Get the latest</a></p>' +
'		<img class="FooterColumnTextBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'		<p class="FooterColumnText">Internet Explorer (7+)<br><a class="FooterBulletedDownloadLink" href="http://www.microsoft.com/windows/internet-explorer/default.aspx">Get the latest</a></p>' +
'		<img class="FooterColumnTextBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'		<p class="FooterColumnText">Chrome (2+)<br><a class="FooterBulletedDownloadLink" href="http://www.google.com/chrome">Get the latest</a></p>' +
'		<img class="FooterColumnTextBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'		<p class="FooterColumnText">Safari (4+)<br><a class="FooterBulletedDownloadLink" href="http://www.apple.com/safari/download/">Get the latest</a></p>' +
'		<img class="FooterColumnTextBar" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'	</div>' +
'	<br class="ClearLeft">' +
'	<img id="FooterLogo" src="'+PathPrefix+'images/invisible.gif" alt="">' +
'	<p id="FooterDisclaimer">Original content is copyright &copy; Vox Ignis. All rights reserved.<br>' +
'	Burning Man and The Burning Man Project are copyright &copy; BRC LLC.<br>' +
'	No relationship between these entities is implied.</p>' +
'</div> <!-- End FooterCrystalballBackground -->';
}


function Header(VoxPageName)
{
var ShowCredit='';
var PhotoFilename='';
var PhotoLocation='';
var Photographer='';
var PhotoOrignialFilename='';
var PathPrefix='';
var CreditsColor='A2988F';
switch (VoxPageName)
{
case 'Home':
	var x=Math.floor(Math.random()*6);
	switch (x)
	{
	case 0:
		ShowCredit='Yes';
		PhotoFilename='background.header.interfuse2005.1.byRadim.jpg';
		PhotoLocation='InterFuse 2005<br>Boonville, MO, USA';
		Photographer='Radim';
		PhotoOrignialFilename='background.original.interfuse2005.1.byRadim.jpg';
		PathPrefix='';
		break;
	case 1:
		ShowCredit='Yes';
		PhotoFilename='background.header.interfuse2005.1.byWeasel.jpg';
		PhotoLocation='InterFuse 2005<br>Boonville, MO, USA';
		Photographer='Weasel';
		PhotoOrignialFilename='background.original.interfuse2005.1.byWeasel.jpg';
		PathPrefix='';
		break;
	case 2:
		ShowCredit='Yes';
		PhotoFilename='background.header.interfuse2007.1.byAldric.jpg';
		PhotoLocation='InterFuse 2007<br>Boonville, MO, USA';
		Photographer='Aldric';
		PhotoOrignialFilename='background.original.interfuse2007.1.byAldric.jpg';
		PathPrefix='';
		break;
	case 3:
		ShowCredit='Yes';
		PhotoFilename='background.header.interfuse2007.2.byAdam.jpg';
		PhotoLocation='InterFuse 2007<br>Boonville, MO, USA';
		Photographer='Adam';
		PhotoOrignialFilename='background.original.interfuse2007.2.byAdam.jpg';
		PathPrefix='';
		break;
	case 4:
		ShowCredit='Yes';
		PhotoFilename='background.header.pdf2007spring.1.byLincecum.jpg';
		PhotoLocation='Playa Del Fuego (Spring) 2007<br>Odessa, DE, USA';
		Photographer='Thibeaux Lincecum';
		PhotoOrignialFilename='background.original.pdf2007spring.1.byLincecum.jpg';
		PathPrefix='';
		CreditsColor='FFFFFF';
		break;
	case 5:
		ShowCredit='Yes';
		PhotoFilename='background.header.burningman2007.1.byGoku.jpg';
		PhotoLocation='Double Rainbow At Burning Man 2007<br>Black Rock Desert, NV, USA';
		Photographer='Goku';
		PhotoOrignialFilename='background.original.burningman2007.1.byGoku.jpg';
		PathPrefix='';
		CreditsColor='000000';
		break;
	default : alert('Random Number x out of range.');
	}
	break;
case 'Communities':
	ShowCredit='No';
	PhotoFilename='background.header.communities.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'RBS':
	ShowCredit='No';
	PhotoFilename='';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Temp':
	ShowCredit='Yes';
	PhotoFilename='background.header.interfuse2005.1.byRadim.jpg';
	PhotoLocation='InterFuse 2005<br>Boonville, MO, USA';
	Photographer='Radim';
	PhotoOrignialFilename='background.original.interfuse2005.1.byRadim.jpg';
	PathPrefix='../';
	break;
case 'BurnerNews':
	ShowCredit='No';
	PhotoFilename='background.header.bnews.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'LinkToVoxIgnis':
	ShowCredit='No';
	PhotoFilename='background.header.link.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'ContributeALink':
	ShowCredit='No';
	PhotoFilename='background.header.contributealink.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'SubmitARBLink':
	ShowCredit='No';
	PhotoFilename='background.header.submitarblink.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Goals':
	ShowCredit='No';
	PhotoFilename='background.header.goals.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Editorial':
	ShowCredit='No';
	PhotoFilename='background.header.editorial.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'History':
	ShowCredit='No';
	PhotoFilename='background.header.history.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'FAQ':
	ShowCredit='No';
	PhotoFilename='background.header.faq.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BrokenLink':
	ShowCredit='No';
	PhotoFilename='background.header.brokenlink.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BPLDonate1':
	ShowCredit='No';
	PhotoFilename='background.header.bpldonate.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BPLDonate2':
	ShowCredit='No';
	PhotoFilename='background.header.bpldonate.2.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'WhatIsVoxIgnis':
	ShowCredit='No';
	PhotoFilename='background.header.whatisvoxignis.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Suggestion':
	ShowCredit='No';
	PhotoFilename='background.header.suggestion.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'ContributePhoto1':
	ShowCredit='No';
	PhotoFilename='background.header.contributephoto.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'ContributePhoto2':
	ShowCredit='No';
	PhotoFilename='background.header.contributephoto.2.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BPL':
	ShowCredit='No';
	PhotoFilename='background.header.bpl.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'MessageTheBPL':
	ShowCredit='No';
	PhotoFilename='background.header.messagethebpl.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BurnerAudioLinks':
	ShowCredit='No';
	PhotoFilename='background.header.burneraudiolinks.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Search':
	ShowCredit='No';
	PhotoFilename='background.header.search.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Feedback':
	ShowCredit='No';
	PhotoFilename='background.header.feedback.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'Project37':
	ShowCredit='No';
	PhotoFilename='background.header.project37.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
case 'BurnerFPELinks':
	ShowCredit='No';
	PhotoFilename='background.header.fpe.links.1.jpg';
	PhotoLocation='';
	Photographer='';
	PhotoOrignialFilename='';
	PathPrefix='../';
	break;
default : alert('No such VoxPageName item.');
}
document.write('<div id="HeaderContainer" style="background: url('+PathPrefix+'images/'+PhotoFilename+') no-repeat 25px 0px scroll;">');
document.write('	<div id="HeaderVoxIgnisLinkContainer"><a href="http://www.voxignis.com"><img id="HeaderVoxIgnisLink" width="440" height="72" src="'+PathPrefix+'images/invisible.gif" border="0" alt=""></a></div>');
document.write('	<div id="HeaderPhotoCreditsContainer">');
				switch (ShowCredit){
				case 'Yes':
					document.write('<p id="HeaderPhotoCredits" style="color: #'+CreditsColor+'">'+PhotoLocation+'<br>Donating photographer: '+Photographer+'<br>');
					document.write('<a id="HeaderPhotoCreditsLink" style="color: #'+CreditsColor+'" href="'+PathPrefix+'images/'+PhotoOrignialFilename+'">View original</a></p>');
					break;
				case 'No':
					break;
				default : alert('ShowCredit value invalid.');
				}
document.write('</div></div>');
}


function LeftBarInsertRandomQuote()
{
var quotes = [
'<p class="LeftBarQuote">&ldquo;There are some people who live in a dream world, and there are some who face reality; and then there are those who turn one into the other.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Douglas Everett</p>',
'<p class="LeftBarQuote">&ldquo;I know of no more encouraging fact than the unquestionable ability of man to elevate his life by conscious endeavor.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Henry David Thoreau</p>',
'<p class="LeftBarQuote">&ldquo;Maybe this is the dawn of the many regional burns, and the influx of Burner culture into the default world 365 days a year. That would be awesome.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Alyssa Royse</p>',
'<p class="LeftBarQuote">&ldquo;Do not let what you cannot do interfere with what you can do.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; John Wooden</p>',
'<p class="LeftBarQuote">&ldquo;Accept everything about yourself &mdash;  I mean everything. You are you and that is the beginning and the end &mdash;  no apologies, no regrets.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Clark Moustakas</p>',
'<p class="LeftBarQuote">&ldquo;Everyone has a talent. What is rare is the courage to follow that talent to the dark place where it leads.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Erica Mann Jong</p>',
'<p class="LeftBarQuote">&ldquo;Art is an invention of aesthetics, which in turn is an invention of philosophers. What we call art is a game.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Octavio Paz</p>',
'<p class="LeftBarQuote">&ldquo;The mind is not a vessel to be filled but a fire to be kindled.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Plutarch</p>',
'<p class="LeftBarQuote">&ldquo;Truly loving another means letting go of all expectations. It means full acceptance, even celebration of another\'s personhood.&rdquo;<p class="LeftBarQuoteAuthor">&mdash; Karen Casey</p>',
'<p class="LeftBarQuote">&ldquo;I bet what happened was, they discovered fire and invented the wheel on the same day. Then, that night, they burned the wheel.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Jack Handey</p>',
'<p class="LeftBarQuote">&ldquo;Love is a fire. But whether it is going to warm your hearth or burn down your house, you can never tell.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Joan Crawford</p>',
'<p class="LeftBarQuote">&ldquo;The words printed here are concepts. You must go through the experiences.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Carl Frederick</p>',
'<p class="LeftBarQuote">&ldquo;Man cannot discover new oceans unless he has the courage to lose sight of the shore.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Andre Gide</p>',
'<p class="LeftBarQuote">&ldquo;The truest expression of a people is in its dance and music.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Agnes de Mile</p>',
'<p class="LeftBarQuote">&ldquo;The only way of discovering the limits of the possible is to venture a little way past them into the impossible.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Arthur C. Clarke</p>',
'<p class="LeftBarQuote">&ldquo;There was never a genius without a tincture of madness.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Aristotle</p>',
'<p class="LeftBarQuote">&ldquo;Be fully in the moment, open yourself to the powerful energies dancing around you.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Ernest Hemingway</p>',
'<p class="LeftBarQuote">&ldquo;Laughter is the shortest distance between two people.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Victor Borge</p>',
'<p class="LeftBarQuote">&ldquo;The thing about performance, even if it\'s only an illusion, is that it is a celebration of the fact that we do contain within ourselves infinite possibilities.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Daniel Day Lewis</p>',
'<p class="LeftBarQuote">&ldquo;Only through art can we emerge from ourselves and know what another person sees.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Marcel Proust</p>',
'<p class="LeftBarQuote">&ldquo;The true work of art is but a shadow of the divine perfection.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Buonarroti Michelangelo</p>',
'<p class="LeftBarQuote">&ldquo;Buy the ticket. Take the ride.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Hunter S. Thompson</p>',
'<p class="LeftBarQuote">&ldquo;The object of art is to crystallize emotion into thought, and then fix it in form.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Francois Delsarte</p>',
'<p class="LeftBarQuote">&ldquo;Wherever they burn books, they will also, in the end, burn people.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Heinrich Heine</p>',
'<p class="LeftBarQuote">&ldquo;If there is something to gain and nothing to lose by asking, by all means ask!&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; W. Clement Stone</p>',
'<p class="LeftBarQuote">&ldquo;A man will fight harder for his interests than for his rights.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Napolean Bonaparte</p>',
'<p class="LeftBarQuote">&ldquo;The reason people sweat is so they won\'t catch fire when making love.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Don Rose</p>',
'<p class="LeftBarQuote">&ldquo;A house is no home unless it contains food and fire for the mind as well as the body.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Margaret Fuller</p>',
'<p class="LeftBarQuote">&ldquo;To hell with circumstances; I create opportunities.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Bruce Lee</p>',
'<p class="LeftBarQuote">&ldquo;As flames do work and wind when they ascend, So did I weave myself into the sense.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; George Herbert</p>',
'<p class="LeftBarQuote">&ldquo;A world is in flames, and you are cracking silly jokes.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Friedrich Dürrenmatt</p>',
'<p class="LeftBarQuote">&ldquo;And songs climb out of the flames of the near campfires, pale, pastel things exquisite in their frailness...&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; John Ashbery</p>',
'<p class="LeftBarQuote">&ldquo;The more people gathering firewood, the higher the flames will grow.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Chinese proverb</p>',
'<p class="LeftBarQuote">&ldquo;Kick up the fire, and let the flames break loose, to drive the shadows back...&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Philip Larkin</p>',
'<p class="LeftBarQuote">&ldquo;Wind feeds the fire, and wind extinguishes: The flames are nourished by a gentle breeze, Yet, if it stronger grows, they sink and die.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Ovid</p>',
'<p class="LeftBarQuote">&ldquo;You lack the courage to be consumed in flames and to become ashes: so you will never become new, and never young again!&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Friedrich Nietzsche</p>',
'<p class="LeftBarQuote">&ldquo;Kick up the fire, and let the flames break loose.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Philip Larkin</p>',
'<p class="LeftBarQuote">&ldquo;Bigger is not Burner.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Chris Lumpkin</p>',
'<p class="LeftBarQuote">&ldquo;Whatever you do will be insignificant, but it is very important that you do it.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Mahatma Gandhi</p>',
'<p class="LeftBarQuote">&ldquo;You must be the change you want to see in the world.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Mahatma Gandhi</p>',
'<p class="LeftBarQuote">&ldquo;I want freedom for the full expression of my personality.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Mahatma Gandhi</p>',
'<p class="LeftBarQuote">&ldquo;Honest disagreement is often a good sign of progress.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Mahatma Gandhi</p>',
'<p class="LeftBarQuote">&ldquo;Human salvation lies in the hands of the creatively maladjusted.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Martin Luther King, Jr.</p>',
'<p class="LeftBarQuote">&ldquo;Almost always, the creative dedicated minority has made the world better.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Martin Luther King, Jr.</p>',
'<p class="LeftBarQuote">&ldquo;Life\'s most urgent question is: what are you doing for others?&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Martin Luther King, Jr.</p>',
'<p class="LeftBarQuote">&ldquo;Whether you think you can or whether you think you can\'t, you\'re right!&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Henry Ford</p>',
'<p class="LeftBarQuote">&ldquo;Never forget that everything Hitler did in Germany was legal.&rdquo;</p><p class="LeftBarQuoteAuthor">&mdash; Martin Luther King, Jr.</p>'];
var whichquote=Math.floor(Math.random()*(quotes.length));
document.getElementById('RandomQuote').innerHTML = '<p class="LeftBarBlockTitle">Burning Quote</p>' +
'<div class="LeftBarBlockContent" id="LeftBarRandomQuoteContainer">'+quotes[whichquote]+'</div>';
}


function FeedbackButton()
{
	document.write('<p id="FeedbackButton"><a href="http://www.voxignis.com/contact/feedback.html">Leave Some Feedback</a></p>');
}


function BPLDonateButton()
{
	document.write('<p id="BPLDonateButton"><a href="http://www.voxignis.com/burnerpubliclibrary/donatelibrarymaterials.step1.html">Donate Materials To The Library</a></p>');
}


function BPLEmptyCategoryNotice()
{
	document.write('This section is currently empty.  Please consider <a href="http://www.voxignis.com/burnerpubliclibrary/donatelibrarymaterials.step1.html">donation</a>.');
}


function SendPhotoButton()
{
	document.write('<p id="FeedbackButton"><a href="http://www.voxignis.com/photography/contributephotography.step1.html">Click To Start</a></p>');
}


function ProtectFormTop()
{
	document.write('<form class="VoxFeedback" method="post" action="http://voxignis.com/cgi-sys/FormMail.cgi"><input type=hidden name="redirect" value="http://www.voxignis.com/contact/messagesent.html">');
}


function ProtectFormAccountTarget(who)
{
switch (who)
{
case 'fb':
	document.write('<input type=hidden name="recipient" value="feedback@voxignis.com">');
	break;
case 're':
	document.write('<input type=hidden name="recipient" value="research@voxignis.com">');
	break;
case 'pm':
	document.write('<input type=hidden name="recipient" value="projectmanager@voxignis.com">');
	break;
case 'te':
	document.write('<input type=hidden name="recipient" value="tech@voxignis.com">');
	break;
case 'bpl':
	document.write('<input type=hidden name="recipient" value="bpllibrarian03@voxignis.com">');
	break;
case 'ph':
	document.write('<input type=hidden name="recipient" value="photography@voxignis.com">');
	break;
case 'don':
	document.write('<input type=hidden name="recipient" value="bpldonations@voxignis.com">');
	break;
case 'temp':
	document.write('<input type=hidden name="recipient" value="temp@voxignis.com">');
	break;
default : alert('ProtectFormAccountTarget code mistake.');
}
}


function LeftBarInsertHarveyQuote()
{
document.getElementById('HarveyQuote').innerHTML = '<p class="LeftBarBlockTitle">The View From<br>The Top</p>' +
'<div class="LeftBarBlockContent" id="LeftBarHarveyQuoteContainer">' +
'	<p class="LeftBarQuote">&ldquo;And what of Burning Man itself?  Harvey sees the event continuing for another decade or so, at which point spinoffs - the so-called Regional Burns - can take over.  By then, he says, there\'ll no longer be a need for a single, central Burning Man organization.&rdquo;</p>' +
'	<p class="LeftBarQuoteAuthor">&ldquo;<a href="http://money.cnn.com/magazines/business2/business2_archive/2007/07/01/100117064/index.htm?postversion=2007070114">Burning Man Grows Up</a>&rdquo;<br><a href="http://money.cnn.com/magazines/business2">Business 2.0</a> (CNN)<br>July 1, 2007</p>' +
'</div>';
}


function LeftBarInsertContributePhotoInfo()
{
document.getElementById('ContributePhotoInfo').innerHTML = '<p class="LeftBarBlockTitle"><b>IMPORTANT:</b><br>Please Read This</p>' +
'<div class="LeftBarBlockContent" id="LeftBaContributePhotoInfoContainer">' +
'	<p class="LeftBar">When your photo is used on this website you will be credited by name or Burner name. There will also be a link to the original, full sized photo.</p>' +
'	<p class="LeftBarBulletedLink">All file formats are accepted.</p>' +
'	<p class="LeftBarBulletedLink">Anonymous contributions cannot be accepted.</p>' +
'	<p class="LeftBarBulletedLink">Photos showing nudity or illegal acts cannot be accepted.</p>' +
'	<p class="LeftBar"><b>You will be contacted by email</b> to confirm receipt.</p>' +
'</div>';
}


function LeftBarInsertBackgroundMusic()
{
document.getElementById('BackgroundMusic').innerHTML = '<p class="LeftBarBlockTitle">Background Music<br>For Broadband</p>' +
'<div class="LeftBarBlockContent NoRightPadding">' +
'	<div id="LeftBarStreamingMusicContainer">' +
'		<p class="LeftBar">Click a style to groove while you surf...</p>' +
'		<p class="RadioStation"><a href="http://www.di.fm/aacplus/ambient.pls" title="Streaming radio station: www.di.fm">Ambient</a></p>' +
'		<p class="RadioStation"><a href="http://www.di.fm/mp3/lounge.pls" title="Streaming radio station: www.di.fm">Chillout</a></p>' +
'		<p class="RadioStation"><a href="http://www.sky.fm/mp3/newage.pls" title="Streaming radio station: www.sky.fm">New Age</a></p>' +
'		<p class="RadioStation"><a href="http://www.etn.fm/playlists/etn2-aac-high.m3u" title="Streaming radio station: www.etn.fm">Progressive</a></p>' +
'		<p class="RadioStation"><a href="http://radio.hbr1.com:19800/trance.aac.m3u" title="Streaming radio station: www.hbr1.com">Psy &amp; Goa</a></p>' +
'		<p class="RadioStation"><a href="http://bmir-ice.streamguys.com/live.m3u" title="Streaming radio station: www.shoutingfire.org">Shouting Fire</a> (new)</p>' +
'		<p class="RadioStation"><a href="http://www.di.fm/mp3/spacemusic.pls" title="Streaming radio station: www.di.fm">Space</a></p>' +
'		<p class="RadioStation"><a href="http://www.di.fm/aacplus/techno.pls" title="Streaming radio station: www.di.fm">Techno</a></p>' +
'		<p class="RadioStation"><a href="http://www.etn.fm/playlists/etn1-aac-high.m3u" title="Streaming radio station: www.etn.fm">Trance</a></p>' +
'		<p class="LeftBar">* If asked, let the streaming music through your firewall.</p>' +
'		<p class="LeftBar">** If asked, choose your usual music player.</p>' +
'		<p class="LeftBar">Check out the <a href="http://www.voxignis.com/links/burneraudio.html">Mystic Orb of Burner Audio Links</a>.</p>' +
'</div></div>';
}


function LeftBarBurnerAudioLinksDirections()
{
document.getElementById('BurnerAudioLinksDirections').innerHTML = '<p class="LeftBarBlockTitle">Streaming Audio &amp;<br>Your Computer</p>' +
'<div class="LeftBarBlockContent">' +
'		<p class="LeftBar">Links on this Mystic Orb point to various audio resource types like sound files (MP3, wav), streaming music (m3u, pls), online radio, and music-based websites.</p>' +
'		<p class="LeftBar">Depending on how your computer security is set up, it might ask a question after clicking a link...</p>' +
'		<p class="LeftBar"><b>If asked</b>, let the streaming music through your firewall.</p>' +
'		<p class="LeftBar"><b>If asked</b>, choose your usual music player.</p>' +
'</div>';
}

