//DISPLAYS HIDDEN DIVS
function displayDrop(id){
	var varname = document.getElementById(id);
	if(varname.style.display=="none"){
		varname.style.display="";
	}else{
		varname.style.display="none";
	}
}

function hideAll(id){
	var varname = document.getElementById(id);
	varname.style.display="none";
}

function flashDisplay(id, width, height, wmode){
	document.write('<object\n');
	document.write('type="application/x-shockwave-flash"');
	document.write('data="flash/' + id + '.swf"');
	document.write('width="' + width + '" height="' + height + '">\n');
	document.write('<param name="loop" value="false" />\n');
	document.write('<param name="wmode" value="' + wmode + '" />\n');
	document.write('<param name="movie" value="flash/' + id + '.swf" />\n');
	document.write('</object>\n');
}