

/*
writeSeemLessContent will write content. 
strContentLabel: a content label that should be recognized.

true is returned if content is found and written.  Else an error message is written and false is returned.
*/
function writeSeemLessContent(strContentLabel) {
	switch(strContentLabel) {
		case "homepageFlash": // index.asp
			document.write('<table border="0" cellpadding="0" cellspacing="0" width="602"><tr><td width="602"><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="602" HEIGHT="132" id="Index" ALIGN=""><PARAM NAME=movie VALUE="index.swf"> <PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="index.swf" quality=high bgcolor=#FFFFFF  WIDTH="602" HEIGHT="132" NAME="Index" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT></td></tr></table>\n');
			document.write('<img src="image/titleHomepage.gif" width="602" height="60" border="0" alt="Advanced SOx, NOx, and Mercury Removal."><br />\n');
		   break
		// ******************************
		case "testFlash": // index.asp
			document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="602" HEIGHT="132" id="Index" ALIGN=""><PARAM NAME=movie VALUE="test.swf"> <PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="test.swf" quality=high bgcolor=#FFFFFF  WIDTH="602" HEIGHT="132" NAME="Index" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT>');
		   break
		// ******************************		
		case "test2Flash": // index.asp
			document.write('<img src="image/homeTestTop.gif" width="602" height="50" border="0" alt=""><br>\n');
			document.write('<table border="0" cellpadding="0" cellspacing="0" width="602"><tr><td width="602"><OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" WIDTH="602" HEIGHT="132" id="Index" ALIGN=""><PARAM NAME=movie VALUE="test.swf"> <PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#FFFFFF><EMBED src="test.swf" quality=high bgcolor=#FFFFFF  WIDTH="602" HEIGHT="132" NAME="Index" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED></OBJECT></td></tr></table>\n');
			document.write('<img src="image/titleHomepage.gif" width="602" height="60" border="0" alt="Advanced SOx, NOx, and Mercury Removal."><br />\n');
		   break
		// ******************************		

		default:    // if inValid expectedType
			document.write('Unknown content requested.');
			return false
		// ******************************
	}  // switch- strContentLabel
		
		
	return true
} // writeSeemLessContent


	