function insertFlash(file, width, height, wmode)
{
	var str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="'+width+'" HEIGHT="'+height+'">';
	str += '<PARAM NAME="movie" VALUE="'+file+'">';
	str += '<PARAM NAME="quality" VALUE="high">';
	str += '<PARAM NAME="wmode" VALUE="'+wmode+'">';
	str += '<EMBED src="'+file+'" quality="high" wmode="'+wmode+'" TYPE="application/x-shockwave-flash" WIDTH="'+width+'" HEIGHT="'+height+'" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>';
	str += '</OBJECT>';
	document.write(str);
}


