function swf_load(filename, widths, heights, menus, plays, loops, id){
	var strSwf = "";

	strSwf += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"';
	strSwf += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"';
	if ( widths > 0 )	{
	strSwf += 'width="'+widths+'" ';
	}
	if ( heights > 0 )	{
	strSwf += 'height="'+heights+'" ';
	}
	strSwf += 'id="'+id+'" align="middle">';
	strSwf += '<param name="movie" value="'+filename+'" />';
	strSwf += '<param name="wmode" value="transparent" />';
	strSwf += '<param name="quality" value="high" />';
	strSwf += '<param name="menu" value="'+menus+'" />';
	strSwf += '<param name="play" value="'+plays+'" />';
	strSwf += '<param name="loop" value="'+loops+'" />';
	strSwf += '<embed src="'+filename+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer"';
	strSwf += 'type="application/x-shockwave-flash" width="'+widths+'" height="'+heights+'" name="'+id+'" align="middle"></embed>';
	strSwf += '</object>';


	document.write(strSwf);
}

