//--built 09---------------------------------------------------------------------------//
//--by      martin hein  www.digitale-mehrwerte.eu  (hein@digitale-mehrwerte.eu)-------//
//alert("video.js");
	
  function createPlayer (file_file, image_file, captions_file, auto_start) 
                       {
																								var s1 = new SWFObject("../_global/functions/jw_flvplayer/player-4.4.158.swf","ply","532","446","9");
																								s1.addParam("allowfullscreen","true");
																								s1.addParam("allownetworking","all");
																								s1.addParam("allowscriptaccess","always");
																								
																								s1.addVariable('file', file_file);
																								s1.addVariable('image', image_file);
																								s1.addVariable('frontcolor', '606061');
																								s1.addVariable('autostart', auto_start);
																								s1.addVariable('plugins', '../_global/functions/jw_flvplayer/accessibility.swf');
																						  s1.addVariable('accessibility.hide', 'true');
																								s1.addVariable('captions', captions_file);
																								s1.write("player_div");
                       }
																							  
  var playerObj;
  function playerReady (obj) 
                      {
	                      playerObj = document.getElementById(obj['id']);
                      }

  function playVideo ()
		             {
															 createPlayer(video_file, image_file, captions_file, auto_start);
															}																					
