function flashmovie() {
	var args = flashmovie.arguments;
	var movie	=	typeof(args[0]) == "undefined" ? "movie.swf" : args[0];
	var width	=	typeof(args[1]) == "undefined" ? 100 : args[1];
	var height	=	typeof(args[2]) == "undefined" ? 100 : args[2];
	var quality =	typeof(args[3]) == "undefined" ? "high" : args[3];
	var menu	=	typeof(args[4]) == "undefined" ? "false" : args[4];

	document.write('<table border="0" cellspacing="0" cellpadding="0">');
	document.write('<tr>');
	document.write('<td width="6" height="6"><img src="../images/window_shadow_top_left.gif"></td>');
	document.write('<td width="6" height="6" background="../images/window_shadow_top.gif"><img src="../images/spacer.gif" width="6" height="6"></td>');
	document.write('<td width="6" height="6" align="right"><img src="../images/window_shadow_top_right.gif"></td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td background="../images/window_shadow_left.gif">&nbsp;</td>');
	document.write('<td>');
	
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + width + '" height="' + height + '">');
	document.write('<param name="movie" value="' + movie + '">');
	document.write('<param name="quality" value="' + quality + '">');
	document.write('<param name="menu" value="' + menu + '">');
	document.write('<embed src="' + movie + '" quality="' + quality + '" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + width + '" height="' + height + '"></embed>');
	document.write('</object>');
	
	document.write('</td>');
	document.write('<td background="../images/window_shadow_right.gif">&nbsp;</td>');
	document.write('</tr>');
	document.write('<tr>');
	document.write('<td width="6" height="6"><img src="../images/window_shadow_bottom_left.gif"></td>');
	document.write('<td width="6" height="6" background="../images/window_shadow_bottom.gif"><img src="../images/spacer.gif" width="6" height="6"></td>');
	document.write('<td width="6" height="6" align="right"><img src="../images/window_shadow_bottom_right.gif"></td>');
	document.write('</tr>');
	document.write('</table>');
}