function playFlv(id) {
	showInfo(id);
        var flashMovie=getFlashMovieObject("UniPlayer");
        flashMovie.playFlv('http://www.cititune.com:8080/' + id);
}

function showInfo(id) { AJAXRequest( insertContent('video_info'), "video/info&ids=" + id ); }
function getFlashMovieObject(movieName)
{
	if (window.document[movieName]) {
      		return window.document[movieName];
  	}
  	if (navigator.appName.indexOf("Microsoft Internet")==-1) {
    		if (document.embeds && document.embeds[movieName])
      		return document.embeds[movieName];
  	}
  	else {
    		return document.getElementById(movieName);
  	}
}
function setPlayerTitle(x) { }
