// JavaScript Document
function initvideo(filename){
	var file_to_play = filename + ".flv";
	var playersetupstring = "";
	playersetupstring += "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0\" width=\"550\" height=\"400\" title=\"Videoplayer\">";
    playersetupstring += "<param name=\"movie\" value=\"player.swf?videofile=" + file_to_play + "\" />";
    playersetupstring += "<param name=\"quality\" value=\"high\" />";
	playersetupstring += "<param name=\"FLASHVARS\" value=\"videofile=" + file_to_play + "\" />";
	playersetupstring += "<embed src=\"player.swf?videofile=" + file_to_play + "\" quality=\"high\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" type=\"application/x-shockwave-flash\" width=\"550\" height=\"400\"></embed>";
  	playersetupstring += "</object>";
	
	document.getElementById("videoplayer").innerHTML = playersetupstring;
	
}