//imbed the flash movie into the page of choice -  this is a simplified version
function imbedThisFlash(thePath, flashFileName, nWidth, nHeight)
{
	isIE = (document.all);
	var strWidth = nWidth.toString();
	var strHeight = nHeight.toString();
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write(' id='+flashFileName+' width='+strWidth+' height='+strHeight+'>');
	document.write(' <param name="movie" value="'+thePath+'/'+flashFileName+'.swf"> <param name="quality" value="high">'); 
	document.write(' <embed src="'+thePath+'/'+flashFileName+'.swf" quality="high" ');
	document.write(' width="'+strWidth+'" height="'+strHeight+'" name="'+flashFileName+'"');
	document.write(' type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </embed>');
	document.write(' </object>');
}