 function includeFlash(str, wid, hei ,class_id,class_ver, allowTransparency)
 {
	 document.write("<object classid='"+class_id+"' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version='"+class_ver+"' width='"+wid+"' height='"+hei+"'>");
	 document.write("<param name='movie' value='"+str+"'>");
	 
	 if (allowTransparency == "true")
	 {
		document.write("<param name='wmode' value='transparent'>");
	 }
	 document.write("<param name='bgcolor' value='#ffffff'>");
	 document.write("<param name='menu' value='false'>");
	 document.write("<param name='loop' value='false'>");
	 document.write("<embed src='"+str+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+wid+"' height='"+hei+"'></embed></object>");
 }