function InsertFlash(src,width,height,nameAr,valAr) { 	
  document.writeln("<!--[if IE]>");
  document.writeln("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"");
  document.writeln("  codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\"");
  document.writeln("  width=\"" + width + "\" height=\"" + height + "\">");
  document.writeln("  <param name=\"movie\" value=\"" + src + "\" />");
  document.writeln("<![endif] -->");
  
  document.writeln("<!--[if !IE]> -->");
  document.writeln("<object type=\"application/x-shockwave-flash\"");
  document.writeln("  data=\"" + src + "\" width=\"" + width + "\" height=\"" + height + "\">");
  document.writeln("<!-- <![endif]-->");
  
  document.writeln("  <param name=\"loop\" value=\"true\" />");
  document.writeln("  <param name=\"menu\" value=\"false\" />");
  document.writeln("</object>"); 

	}
