// JavaScript Document
function ampliarImagen(imagen,desc,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='aumentaimagen.php?ruta='+imagen+'&desc='+desc;
	//alert(imagen);
	win = window.open(imagen,nombre,estilo);
} 