/* ************************************************ 
* The Flash Mod 
* Version 1.2
* Copyright (C) 2006 by Michael Carico - All rights reserved
* Written by Michael Carico
* Released under GNU/GPL License - http://www.gnu.org/copyleft/gpl.htm
* Website http://www.kabam.net
************************************************ */
function flashmod($fm_path,$fm_source,$fm_width,$fm_height,$fm_version,$fm_quality,$fm_wmode,$fm_loop,$fm_name) {
	
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000');
document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="' + $fm_version + '"'); 
document.write(' width="' + $fm_width + '"'); 
document.write(' height="' + $fm_height + '"');
if ($fm_name != '') document.write(' id="' + $fm_name + '"');
document.write('>');
document.write(' <param name="movie" value="' + $fm_path + $fm_source + '"/>');
document.write(' <param name="quality" value="' + $fm_quality + '" />');
if ($fm_wmode != 'window') document.write('echo <param name="wmode" value="' + $fm_wmode + '" />');
if ($fm_loop == 'false') document.write(' <param name="loop" value="' + $fm_loop + '" />');
document.write('<embed src="' + $fm_path + $fm_source + '"'); 
document.write(' quality="' + $fm_quality + '"');
document.write(' pluginspage="http://www.macromedia.com/go/getflashplayer"'); 
document.write(' type="application/x-shockwave-flash"');
document.write(' width="' + $fm_width + '"'); 
document.write(' height="' + $fm_height + '"');
if ($fm_wmode != 'window') document.write(' wmode="' + $fm_wmode + '"');
if ($fm_loop == 'false') document.write(' loop="' + $fm_loop + '"');
if ($fm_name != '') document.write(' name="' + $fm_name + '"');
document.write ('></embed>');
document.write('</object>');
}