function InsertFlash(src,width,height,rubrika) { 	

  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("  <param name=\"quality\" value=\"high\" />");
  document.writeln("  <param name=\"bgcolor\" value=\"#000000\" />");
  document.writeln("  <param name=\"FlashVars\" value=\"xmlsource=" + rubrika + "\" />");
  
  document.writeln("  <param name=\"loop\" value=\"true\" />");
  document.writeln("  <param name=\"menu\" value=\"false\" />");
  document.writeln("  <embed src=\"" + src + "\" ");
  document.writeln("    quality=\"high\" ");
  document.writeln("    bgcolor=\"#ffffff\" ");
  document.writeln("    width=\"" + width + "\" ");
  document.writeln("    height=\"" + height + "\" ");
  document.writeln("    name=\"flash\" ");
  document.writeln("    allowScriptAccess=\"always\" ");
  document.writeln("    type=\"application/x-shockwave-flash\" ");
  document.writeln("    pluginspage=\"http://www.macromedia.com/go/getflashplayer\" ");
  document.writeln("    FlashVars=\"xmlsource=" + rubrika + "\" />");
  document.writeln("</object>"); 

	}
	
function InsertVideo(src,width,height) { 	

  document.writeln("  <embed src=\"mediaplayer.swf\" ");
  document.writeln("    allowfullscreen=\"true\" ");
  document.writeln("    allowscriptaccess=\"always\" ");
  document.writeln("    width=\"" + width + "\" ");
  document.writeln("    height=\"" + height + "\" ");
  document.writeln("    flashvars=\"&file=" + src + "&height=" + height + "&width=" + width + "\" /> ");
  
	}
