function showideo(str) {
	errorStr = "<div style='border:1px solid #000; display: inline-block; padding: 5px; margin: 5px;'><strong>INVALID VÍDEO!</strong></div>";
	//Trim
	str = str.replace(/^(\s|\&nbsp;)*|(\s|\&nbsp;)*$/g,"");
	//Es un id youtube?
	if (str.length < 14) {
		//es un id
		str = 'http://www.youtube.com/watch?v=' + str;
	} 
	//Es Youtube?
	if (str.match(/youtube\.com\/watch/i)) {
		
		//elimino inecesario
		str = str.split("&")
		str = str[0];
		
		//Get Id
		id = str.match("[\\?&]v=([^&#]*)");
		id = ( id === null ) ? url : id[1];
		
		if (!id) { document.write(errorStr); return false; }
		
		document.write('<center><embed height="385"	width="640" wmode="transparent"	allowscriptaccess="false" allowfullscreen="true" 	quality="high" 	bgcolor="#ffffff"	name="ply" 	id="ply" 	style="" 	src="http://forum.tocamela.cat/swf/playern.swf" 	type="application/x-shockwave-flash"flashvars="displaywidth=640&amp;displayheight=341&amp;width=640&amp;height=385&amp;abouttext=Tocamela&amp;aboutlink=http://www.tocamela.cat/&amp;logo=logo.png&amp;file='+str +'&amp;image=http://img.youtube.com/vi/'+id+'/hqdefault.jpg&amp;backcolor=68a8f7&amp;frontcolor=fffff0&amp;screencolor=000000&amp;controlbar=bottom&amp;volume=100" /></center>');
	
	} else if (str.match(/vimeo\.com/i)) {
		//alert('Vimeo! ' + str	);
	} else if (str.match(/tocamela\.cat/i)) {
	
	} else {
		document.write(errorStr);
	}
}