function innerFlash(path, width, height)
{
	document.writeln('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" height="' + height  + '" width="' + width + '" >');
	document.writeln(' <param value="' + path + '" name="movie" />');
	document.writeln(' <param value="high" name="quality" />');
	document.writeln(' <param name="wmode" value="transparent" />');
	document.writeln(' <embed src="' + path + '" quality="high" wmode="transparent" width="' + width + '" height="' + height + '"  align="middle"  name="' + path + '" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.writeln(' </object>');

}