
	function writeFlash( movieURL, movieWidth, movieHeight) {

		if (movieURL.indexOf("advertPlayerv2.swf") > 0)
		{
			writeFlash8( movieURL, movieWidth, movieHeight);
		}
		else
		{	
		var theString = "";
		theString += "<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=\"" + movieWidth + "\" height=\"" + movieHeight + "\" align=\"middle\">";
		theString += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
		theString += "<param name=\"movie\" value=\"" + movieURL + "\" />";
		theString += "<param name=\"quality\" value=\"high\" />";
		theString += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		theString += "<param name=\"wmode\" value=\"transparent\" />";
		theString += "<embed src=\"" + movieURL + "\" quality=\"high\" bgcolor=\"#ffffff\" wmode=\"transparent\" width=\"" + movieWidth + "\" height=\"" + movieHeight + "\" name=\"ctn_2006_ver2\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" >";
		theString += "</embed>";
		theString += "</object>";
	
		document.write( theString );
		}
	}


	function writeFlash8( movieURL, movieWidth, movieHeight) {

		var theString = "";
		theString += "<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0\" width=\"" + movieWidth + "\" height=\"" + movieHeight + "\" align=\"middle\">";
		theString += "<param name=\"allowScriptAccess\" value=\"sameDomain\" />";
		theString += "<param name=\"movie\" value=\"" + movieURL + "\" />";
		theString += "<param name=\"quality\" value=\"high\" />";
		theString += "<param name=\"bgcolor\" value=\"#ffffff\" />";
		theString += "<param name=\"wmode\" value=\"transparent\" />";
		theString += "<embed src=\"" + movieURL + "\" quality=\"high\" bgcolor=\"#ffffff\" wmode=\"transparent\" width=\"" + movieWidth + "\" height=\"" + movieHeight + "\" name=\"ctn_2007\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" >";
		theString += "</embed>";
		theString += "</object>";
	
		document.write( theString );
	}

/* put ththis file in your html head then:

to insert a movie into the page use:

<script type="text/javascript" language="javascript">
<!--
	writeFlash( "mymovie.swf?param1=hello", 100, 50);
// -->
</script>

*/




