function viewImage(id,filename,width,height)
{
	filename='artistas/'+id+'/images/'+filename;

	var ie5=document.all && !window.opera;
	if(!ie5) ns6=document.getElementById;

	width=width+21;
	height=height+25;
	
	var thisid="page"+Math.floor(Math.random()*65536)
	
	eval(thisid + " = window.open('', '" + thisid + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width="+width+",height="+height+"');");

	if (ie5)
	{
		b_width="document.body.offsetWidth";
		b_height="document.body.offsetHeight";
	}
	else
	{
		b_width="window.innerWidth";
		b_height="window.innerHeight";
	}

	eval(thisid + ".document.write('<html><head><title>ArtistasPT.com</title></head><body><script type=\"text/javascript\">self.moveTo((screen.width/2)-("+ b_width +"/2),(screen.height/2)-("+ b_height +"/2))</script><img src=\"'+filename+'\"></body>')");
	if((nosound!=true)&&(document.getElementById("PreviewAudio"))&&(ie5)) document.getElementById("PreviewAudio").play();
}
