
var theDiv;
var prevDiv = '';

function randomString() {
	var chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXTZabcdefghiklmnopqrstuvwxyz";
	var string_length = 8;
	var randomstring = '';
	for (var i=0; i<string_length; i++) {
		var rnum = Math.floor(Math.random() * chars.length);
		randomstring += chars.substring(rnum,rnum+1);
	}
	return randomstring;
}



function getJB(theBibArea,theBG,theVideo,theAudio,theImages,theBlog){
	var theArea = randomString();
theJB = 
"<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='650' height='35' id='jb'>"+
"<param name='movie' value='http://www.bruceclay-wip.com/jb2/jb_v2.swf?bg="+theBG+"&area="+theArea+"&video="+theVideo+"&audio="+theAudio+"&images="+theImages+"&blog="+theBlog+"&BibArea="+theBibArea+"'>"+
"<param name='quality' value='high'>"+
"<embed src='http://www.bruceclay-wip.com/jb2/jb_v2.swf?bg="+theBG+"&area="+theArea+"&video="+theVideo+"&audio="+theAudio+"&images="+theImages+"&blog="+theBlog+"&BibArea="+theBibArea+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='650' height='35'  name='jb'></embed></object>"+
"<div class='mediaArea' id='"+theArea+"'></div>";
document.write(theJB);
}


function expandDiv(theDiv,theSWF,theBG,theVideo,theBib){
	if (prevDiv != ''){
	window.document.getElementById(prevDiv).style.display="none";
	window.document.getElementById(prevDiv).innerHTML = "";
	window.document.getElementById(prevBib).style.display="none";
	}
window.document.getElementById(theBib).style.display="none";
	window.document.getElementById(theDiv).style.display="block";
	window.document.getElementById(theDiv).innerHTML = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0' width='650' height='400' name='"+theVideo+"'>"+
            "<param name='movie' value='http://www.bruceclay-wip.com/jb2/"+theSWF+".swf?file="+theVideo+"&bg="+theBG+"'>"+
            "<param name='quality' value='high'>"+
            "<embed src='http://www.bruceclay-wip.com/jb2/"+theSWF+".swf?file="+theVideo+"&bg="+theBG+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='650' height='400'  name='"+theVideo+"'></embed>"+
	      "</object>";
		  prevDiv = theDiv;
		  prevBib = theBib;
}

function closeDiv(theDiv,theBib){
	window.document.getElementById(theDiv).style.display="none";
	window.document.getElementById(theDiv).innerHTML = "";
	window.document.getElementById(theBib).style.display="none";
}


function expandBib(theBib,theDiv){
		if (prevDiv != ''){
	window.document.getElementById(prevDiv).style.display="none";
	window.document.getElementById(prevDiv).innerHTML = "";
	window.document.getElementById(prevBib).style.display="none";
	}
	
	if (window.document.getElementById(theBib).style.display!="block"){
		window.document.getElementById(theBib).style.display="block";
		window.document.getElementById(theDiv).innerHTML = "";
	}
	
	  prevDiv = theDiv;
		prevBib = theBib;
	
}

