function ampliarImagen(imagen,nombre,w,h)
{
var win = null;
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
estilo ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable';
imagen='../php/aumentaimagen.php?archivo='+imagen;
//alert(imagen);
win = window.open(imagen,nombre,estilo);
}