	
	function showFlash( 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=7,0,0,0\" width=\"" + movieWidth + "\" height=\"" + movieHeight + "\" id=\"ctn_site\" 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 += "<param name=\"play\" value=\"false\" />";
	    theString += "<embed src=\"" + movieURL + "\" play=\"false\" quality=\"high\" bgcolor=\"#ffffff\" 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 += "</object>";

	    document.write( theString );
	}

