centroA = screen.width/2;
centroL = screen.height/2;

var win=null;
function mostrarimagen(url_imagen,titulo){
	url_imagen = url_imagen.replace('file://','');
	var mytool_array = url_imagen.split("/");
	url_imagen = mytool_array[mytool_array.length-1];

 	/*var img = new Image();
 	img.src = url_imagen;

	
	window.open(url_imagen,"DescriptiveWindowName", "left=200,top=200 ,width="+img.width+",height="+img.height+",scrollbars=no,resizable=0,toolbar=0");

*/



	win=window.open('','','left=200,top=200,width=500,height=375,scrollbars=no,resizable=0,toolbar=0');
	win.document.write ('<html>\n');
	win.document.write ('  <head>\n');
	win.document.write ('    <title>performances-nau</title>\n');
	win.document.write ('    <link href=../../../estilos/incubarte.css rel=stylesheet type=text/css>\n');
	win.document.write ('  </head>\n');

	win.document.write ('  <body leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 class=foto>\n');
	win.document.write ('    <table width=100% height=100% border=0 cellpadding=0 cellspacing=0>\n');
	win.document.write ('      <tr>\n');
	win.document.write ('        <td align=center valign=middle>\n');

	win.document.write ('          <img border=none src=' + url_imagen +'>\n');

	win.document.write ('        </td>\n');
	win.document.write ('      </tr>\n');
	win.document.write ('    </table>\n');
	
	win.document.write ('  </body>\n');
	win.document.write ('</html>\n');
}