function switchVideo(idVideo, tipoVideo) {
	if (tipoVideo=='GoogleVideo') {
		document.getElementById('TrailerVideo').innerHTML = "<embed style='width:400px; height:325px; border:1px solid #DADADA' id='VideoPlayback' type='application/x-shockwave-flash' src='http://video.google.com/googleplayer.swf?docId=" + idVideo + "&amp;autoPlay=true&amp;hl=it' FlashVars='playerMode=embedded&amp;autoPlay=true'> </embed>";
	}
	else if (tipoVideo=='pn') {
		document.getElementById('TrailerVideo').innerHTML = "<embed width='400' height='226' allowFullScreen='true' allowScriptAccess='always' src='http://www.player.filmtrailer.com/v3.4/player.swf' flashvars='file=http://it.player-feed.filmtrailer.com/v2.0/cinema/" + idVideo + "/?channel_user_id=391100043-1&default_quality=xlarge&display_title=none&share=0&logo=0&backcolor=FF6600&frontcolor=000000&autostart=true' type='application/x-shockwave-flash' pluginspage='http://www.adobe.com/go/getflashplayer'></embed>"
	}
	else if (tipoVideo=='YouTube') {
		document.getElementById('TrailerVideo').innerHTML = "<embed src='http://www.youtube.com/v/" + idVideo + "&amp;showsearch=0&amp;color1=0xe1600f&amp;color2=0xfebd01&amp;showinfo=0&autoplay=1' type='application/x-shockwave-flash' wmode='transparent' width='400' height='246'></embed>";
	}
}