
function includeFlash(classid, version, width, height, file_name, file_path)
{
	document.writeln("<object classid=\""+classid+"\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version="+version+"\" width=\""+width+"\" height=\""+height+"\">");
	document.writeln("<param name=\"movie\" value=\""+file_name+"\">");
	document.writeln("<param name=\"quality\" value=\"high\">");
    document.writeln("<param name=\"wmode\" value=\"true\">");
    document.writeln("<embed src=\""+file_path+"\" quality=\"high\" wmode=\"true\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\""+width+"\" height=\""+height+"\"></embed>");
	document.writeln("</object>");
}
