function abre_player(URL) {
	var width = 330;
	var height = 40;
	var left = 80;
	var top = 80;
	window.open(URL,'player', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=no, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}

function abrir_imagem(foto) {

	var largura = 0;
	var altura = 0;
	var esquerda = ((screen.width - largura) / 2);
	var topo = ((screen.height - altura) / 2);

	Popup = window.open('', 'Janela', 'width = ' + largura + ', height = ' + altura + ', 10, 10, scrollbars = no, status = no, toolbar = no, location = no, directories = no, menubar = no, resizable = no, fullscreen = no');
	Popup.document.open();
	Popup.document.write("<html><head><title>");
	Popup.document.write(" - Imagem Estúdio - AzStudio - ");
	Popup.document.write("</title>");
	Popup.document.write('<script language=' + '\"JavaScript\">');
	Popup.document.write('function ' + 'resize() {');
	Popup.document.write('var x = ' + 'document.images[0].width;');
	Popup.document.write('var y = ' + 'document.images[0].height;');
	Popup.document.write('this.resizeTo ' + '((x + 10), (y + 29));');
	Popup.document.write('}');
	Popup.document.write('</scr' + 'ipt>');
	Popup.document.write("</head><body leftmargin=0 topmargin=0 onload=\"resize()\">");
	Popup.document.write('<center>');
	Popup.document.write('<img src=\"' + foto + '\">');
	Popup.document.write("</center>");
	Popup.document.write("</body></html>");
	Popup.document.close();
}

function tube(URL) {
  window.open(URL,'video','width=425,height=350');
}