﻿function v(Host, VideoID)
{
	switch(Host)
	{
		case "YT":
			document.write("<div align=\"center\"><object width=\"360\" height=\"290\">");
			document.write("<param name=\"movie\" value=\"http://www.youtube.com/v/" + VideoID + "&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&border=1\"></param>");
			document.write("<param name=\"allowFullScreen\" value=\"true\"></param>");
			document.write("<param name=\"allowscriptaccess\" value=\"always\"></param>");
			document.write("<embed src=\"http://www.youtube.com/v/" + VideoID + "&hl=en&fs=1&rel=0&color1=0x999999&color2=0xB1B1B1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"360\" height=\"290\"></embed>");
			document.write("</object></div>");
			break;
			
		case "SV": 
			document.write("<div align=\"center\"><embed src=\"http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/" + VideoID + "/mov/1\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"290\"></embed></div>");
			break;
			
		case "V":
			document.write("<div align=\"center\">");
			document.write("<object width=\"360\" height=\"250\">");
			document.write("<param name=\"allowfullscreen\" value=\"true\" />");
			document.write("<param name=\"allowscriptaccess\" value=\"always\" />");
			document.write("<param name=\"movie\" value=\"http://vimeo.com/moogaloop.swf?clip_id=" + VideoID + "&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1\" />");
			document.write("<embed src=\"http://vimeo.com/moogaloop.swf?clip_id=" + VideoID + "&server=vimeo.com&show_title=1&show_byline=1&show_portrait=0&color=&fullscreen=1\" type=\"application/x-shockwave-flash\" allowfullscreen=\"true\" allowscriptaccess=\"always\" width=\"360\" height=\"250\"></embed>");
			document.write("</object></div>");
			break;
		
		default: document.write("Host inválido. Hosts permitidos: YouTube (YT), Sapo Videos (SV) e Vimeo (V)."); break;
	}
}

function YouTube(Video_ID) 
{
	document.write("<div align=\"center\"><object width=\"360\" height=\"290\">");
	document.write("<param name=\"movie\" value=\"http://www.youtube.com/v/" + Video_ID + "&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999&border=1\"></param>");
	document.write("<param name=\"allowFullScreen\" value=\"true\"></param>");
	document.write("<param name=\"allowscriptaccess\" value=\"always\"></param>");
	document.write("<embed src=\"http://www.youtube.com/v/" + Video_ID + "&hl=en&fs=1&rel=0&color1=0x999999&color2=0xB1B1B1\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"360\" height=\"290\"></embed>");
	document.write("</object></div>");
}

function SapoVideos(Video_ID)
{
	document.write("<div align=\"center\"><embed src=\"http://rd3.videos.sapo.pt/play?file=http://rd3.videos.sapo.pt/" + Video_ID + "/mov/1\" type=\"application/x-shockwave-flash\" width=\"360\" height=\"290\"></embed></div>");
}