function ampfotonews(cual,pos,idioma) {
	var txtalt="NETDISPLAY Portable Systems - foto de ";
	if (idioma=="en") txtalt="NETDISPLAY Portable Systems - photo of ";
	txtalt += cual.substring(cual.length-6,cual.length);
	var width=492, height=369, str='';
	if (pos.toLowerCase()=="v")	{ width=369, height=492, str=''; }

	var winnews = launchCenter('','cuarto',width,height,',resizable=no,toolbar=no,location=no,status=no,menubar=no,scrollbars=no');
	//escribe en nueva ventana
	winnews.document.open();
	if (window.focus) winnews.focus();
	var isie=false;
	if(navigator.appName=="Microsoft Internet Explorer"&&parseInt(navigator.appVersion)>=4){isie=true;}
	/*if (window.resizeTo) {
	if(isie){
	winnews.resizeTo(width+2,height+20+3); //asegura q la ventana tenga mismo tamanyo
	}
	else { winnews.resizeTo(width,height);}
	}*/
	winnews.document.write('<html><head><title>'+txtalt+'</title></head><body leftmargin=0 topmargin=0 rightmargin=0 bottommargin=0 marginheight=0 marginwidth=0><img src="/newsxtras/'+cual+'b.jpg" width="'+width+'" height="'+height+'" alt="'+txtalt+'"></body></html>');
	if (window.resizeTo) {
	if(isie){
	winnews.resizeTo(width+10,height+48); //asegura q la ventana tenga mismo tamanyo
	}
	else { winnews.resizeTo(width+6,height+48);}
	}
	winnews.document.close();
}