function VideoInterface(){
}
VideoInterface.prototype.VIDEO_ID="";
VideoInterface.prototype.TITULO="";
VideoInterface.prototype.DESCRICAO="";
VideoInterface.prototype.USUARIO_ID="";
VideoInterface.prototype.AUTOR="";
VideoInterface.prototype.CATEGORIA="";
VideoInterface.prototype.DATA="";
VideoInterface.prototype.TAGS="";

VideoInterface.prototype.prepare = function(){
	var vi = "";
	vi += "";
	vi += "<div class='videoPlayerBox'>";
	vi += "<div class='videoTitulo'>" + this.TITULO + "</div><br />";
	vi += "<div>";
	vi += "	por <a href='/user/perfil/" + this.USUARIO_ID + "'>" + this.AUTOR + "</a>,";
	vi += "	em " + this.DATA + " | categoria : <a>" + this.CATEGORIA + "</a>";
	vi += "</div><br />";
	vi += "<div style='width:420px;height: 315px;background:#fff;'><script src='/embed/fiz/" + this.VIDEO_ID + "' type='text/javascript'></script>";
	vi += "</div>";
	vi += "<div>" + this.DESCRICAO + "</div><br />";
	vi += "<div class='divisao' style='border-bottom:solid 1px #666;'> </div>";
	vi += "<br />";
	vi += "</div>";	
	
	return vi;
}

VideoInterface.prototype.display = function(){
	document.write(this.prepare());
};