/*******************************/
/* Flash Printing JS Functions */
/*******************************/

function WriteFeaturedIndustry() {
	var flashURL = "/media/flash/FeaturedIndustry.swf";
	var width = 222;
	var height = 226;
	
	printFlash(flashURL, width, height);
	//printPlaceholder(flashURL, width, height);
}

function WriteFlashMap() {
	var flashURL = "/media/flash/longmont.swf";
	var width = 855;
	var height = 491;
	
	printFlash(flashURL, width, height);
}
    
function printFlash(flashURL, width, height) {

	var bgcolor = "#FFFFFF";
	var allowScriptAccess = "sameDomain";
	var quality = "high";
	var align = "middle";
	var name = "flash";
	var autoplay = true;
	var wmode = "transparent";

	document.writeln("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+width+"\" height=\""+height+"\" id=\""+name+"\" align=\""+align+"\">");
	document.writeln("<param name=\"allowScriptAccess\" value=\""+allowScriptAccess+"\" />");
	document.writeln("<param name=\"movie\" value=\""+flashURL+"\" />");
	document.writeln("<param name=\"quality\" value=\""+quality+"\" />");
	document.writeln("<param name=\"bgcolor\" value=\""+bgcolor+"\" />");
	document.writeln("<param name=\"play\" value=\""+autoplay+"\" />");
	document.writeln("<param name=\"wmode\" value=\""+wmode+"\" />");
	document.writeln("<embed src=\""+flashURL+"\" quality=\""+quality+"\" bgcolor=\""+bgcolor+"\" width=\""+width+"\" height=\""+height+"\" name=\""+name+"\" align=\""+align+"\" allowScriptAccess=\""+allowScriptAccess+"\" play=\""+autoplay+"\" wmode=\""+wmode+"\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
	document.writeln("</object>");
}
function printPlaceholder(flashURL, width, height) {
    document.writeln("<img src=\"" + flashURL + "\" />");
}


