function viewMovie(id, title, pov, spec) {
	var myvideo = document.getElementById('ytplayer2_object');
	var mytitle = document.getElementById('nowplaying-title');
	var mypov = document.getElementById('nowplaying-pov');
	if(myvideo && mytitle && mypov) {
		myvideo.loadVideoById(id);
		mytitle.innerHTML = 'Now playing: ' + title;
		mypov.innerHTML = 'Point of view: <a href="http://eu.wowarmory.com/character-sheet.xml?r=Chromaggus&amp;n=' + pov + '" title="' + pov + '\'s Armory profile" onclick="window.open(this.href); return false;">' + pov + '</a> - ' + spec;
	}
}