function centrar(para,modo){
	if(modo=="Y"){
		valor_total=screen.height;
	}else if(modo=="X"){
		valor_total=screen.width;
	}
	valor_final=(valor_total/2)-(para/2);
	return valor_final;
}

function verfoto(img,w,h){
	propiedades="toolbar=0,location=0,directories=0,status=0,menubar=no,scrollbars=no,top="+centrar(h,'Y')+",left="+centrar(w,'X')+",resizable=0,width="+w+",height="+h;
	window.open("../verfoto.php?img="+img,"foto",propiedades);
}

