function setVideo(file)
{ 
	// $("player_placeholder").innerHTML = "<object id=\"mediaPlayer\" classid=\"CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95\"  codebase=\"http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701\"  standby=\"Loading Microsoft Windows Media Player components...\"  type=\"application/x-oleobject\"  height=\"270\"  width=\"322\">  <param name=\"fileName\" value=\"upload/videos/" + file + "\"> <param name=\"autostart\" value=\"true\"> <param name=\"BufferingTime\" value=\"7\"> <param name=\"uiMode\" value=\"mini\"> <param name=\"stretchToFit\" value=\"true\"> <param name=\"loop\" value=\"false\"> <embed type=\"application/x-mplayer2\  pluginspage=\"http://microsoft.com/windows/mediaplayer/en/download/\"  id=\"mediaPlayer\"  name=\"mediaPlayer\"  autosize=\"1\"  src=\"upload/videos/" + file + "\"  autostart=\"1\"  loop=\"0\"  uimode=\"mini\"  stretchToFit=\"1\"  height=\"270\"  width=\"322\"></embed></object>"; 
	$("player_placeholder").innerHTML = "<object width=\"425\" height=\"344\"><param name=\"movie\" value=\"http://www.youtube.com/v/" + file + "&hl=it&fs=1&autoplay=1&\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/" + file + "&hl=it&fs=1&autoplay=1&\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"425\" height=\"344\"></embed></object>";	
	return false;
}
