// Inserts the flash movie of the specified size into the current position on the page
function insert_swf(amovie, awidth, aheight, anavid)
{
	var ShockMode = 0;

	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
	document.write(' codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=2,0,0,0" ');
	document.write(' ID=' + anavid + ' WIDTH="' + awidth + '" HEIGHT="' + aheight + '"> ');
	document.write(' <PARAM NAME=movie VALUE="' + amovie + '"> ');
	document.write(' <PARAM NAME=quality VALUE=best> ');

	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) {
		if (navigator.plugins && navigator.plugins["Shockwave Flash"])
			ShockMode = 1;
	}
	
	if (ShockMode) {
		document.write('<EMBED SRC="' + amovie + '"');
		document.write(' WIDTH="'+ awidth + '" HEIGHT="' + aheight + '" ');
		document.write(' QUALITY=best ID="' + anavid + '" ' );
		document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
		document.write('</EMBED>');
	} else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)) {
		document.write('<BR><A HREF="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">No shockwave plugin available</A><BR>');
	}
	
	document.write('</SCRIPT><NOEMBED><BR>No embedding available<BR></NOEMBED><NOSCRIPT><BR>No scripting<BR></NOSCRIPT></OBJECT> ');

}

