<!--
	function grab_param(name,url){
	  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
	  var regexS = "[\\?&]"+name+"=([^&#]*)";
	  var regex = new RegExp( regexS );
	  var results = regex.exec( url );
	  if( results == null )
	    return "";
	  else
	    return results[1];
	}
	
	function ChangeVideo (video) {
		var div = document.getElementById('centerVideoDest');
		var conteudo = '<object width=\"440\" height=\"268\"><param name=\"movie\" value="http://www.youtube.com/v/' + grab_param('v', video) + '3CACT2ybjPo?fs=1&amp;hl=pt_BR\"></param><param name=\"allowFullScreen\" value=\"true\"></param><param name=\"allowscriptaccess\" value=\"always\"></param><embed src=\"http://www.youtube.com/v/' + grab_param('v', video) + '?fs=1&amp;hl=pt_BR\" type=\"application/x-shockwave-flash\" allowscriptaccess=\"always\" allowfullscreen=\"true\" width=\"440\" height=\"268\"></embed></object>'
		div.innerHTML = conteudo;
	}
//-->
